summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien Guerry <bzg@altern.org>2013-03-03 18:29:00 +0100
committerBastien Guerry <bzg@altern.org>2013-03-03 18:29:00 +0100
commit633cfc9dac7b4221e111eb157cfb603f56245c97 (patch)
tree25f6bac25f563decbe9b746c5bad60efaffdcf92
parentb06735aa85506e04f9b2ea7457bab411a1b86bf3 (diff)
downloadorg-mode-633cfc9dac7b4221e111eb157cfb603f56245c97.tar.gz
ox-html.el (org-html-display-buffer-mode): Delete
* ox-html.el (org-html-display-buffer-mode): Delete. (org-html-export-as-html): Use `set-auto-mode' instead of `org-html-display-buffer-mode'. Thanks to Jambunathan for suggesting this.
-rw-r--r--lisp/ox-html.el14
1 files changed, 2 insertions, 12 deletions
diff --git a/lisp/ox-html.el b/lisp/ox-html.el
index a0f3f4f..3e0a288 100644
--- a/lisp/ox-html.el
+++ b/lisp/ox-html.el
@@ -1125,16 +1125,6 @@ CSS classes, then this prefix can be very useful."
:group 'org-export-html
:type 'string)
-(defcustom org-html-display-buffer-mode 'html-mode
- "Default mode when visiting the HTML output."
- :group 'org-export-html
- :version "24.4"
- :package-version '(Org . "8.0")
- :type '(choice (function 'html-mode)
- (function 'nxml-mode)
- (function :tag "Other mode")))
-
-
;;; Internal Functions
@@ -3108,14 +3098,14 @@ is non-nil."
(erase-buffer)
(insert output)
(goto-char (point-min))
- (funcall org-html-display-buffer-mode)
+ (set-auto-mode t)
(org-export-add-to-stack (current-buffer) 'html)))
`(org-export-as 'html ,subtreep ,visible-only ,body-only ',ext-plist))
(let ((outbuf (org-export-to-buffer
'html "*Org HTML Export*"
subtreep visible-only body-only ext-plist)))
;; Set major mode.
- (with-current-buffer outbuf (funcall org-html-display-buffer-mode))
+ (with-current-buffer outbuf (set-auto-mode t))
(when org-export-show-temporary-export-buffer
(switch-to-buffer-other-window outbuf)))))