소스 검색

ox-html.el (org-html-fontify-code): Possibly deactivate fci-mode

* ox-html.el (org-html-fontify-code): Possibly deactivate fci-mode.

Thanks to Kaushal for suggesting this.
Bastien Guerry 10 년 전
부모
커밋
44aaaad8c0
1개의 변경된 파일4개의 추가작업 그리고 0개의 파일을 삭제
  1. 4 0
      lisp/ox-html.el

+ 4 - 0
lisp/ox-html.el

@@ -1958,6 +1958,10 @@ is the language used for CODE, as a string, or nil."
 	  (setq code (with-temp-buffer
 		       ;; Switch to language-specific mode.
 		       (funcall lang-mode)
+		       ;; Disable fci-mode if present
+		       (when (and (fboundp 'fci-mode)
+				  (require 'fill-column-indicator nil 'noerror))
+			 (fci-mode -1))
 		       (insert code)
 		       ;; Fontify buffer.
 		       (font-lock-ensure)