summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Goaziou <n.goaziou@gmail.com>2013-07-28 21:40:02 +0200
committerNicolas Goaziou <n.goaziou@gmail.com>2013-07-28 21:40:02 +0200
commit33a2c7ea682f3e443211969928b129d87e01758f (patch)
tree500c0c8973efa0a7a7608dd2a827593c5d8a5e9e
parent17ba41434e451aeb3d0e9efdad65b3d21f9467d9 (diff)
downloadorg-mode-33a2c7ea682f3e443211969928b129d87e01758f.tar.gz
ox: Fix compilation error with Emacs < 24
* lisp/ox.el (org-export-stack-mode-map): Fix compilation error with Emacs < 24.
-rw-r--r--lisp/ox.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/ox.el b/lisp/ox.el
index b8bbac2..fcf3ef7 100644
--- a/lisp/ox.el
+++ b/lisp/ox.el
@@ -5584,7 +5584,7 @@ within Emacs."
((bufferp source) (org-switch-to-buffer-other-window source))
(t (org-open-file source in-emacs)))))
-(defconst org-export-stack-mode-map
+(defvar org-export-stack-mode-map
(let ((km (make-sparse-keymap)))
(define-key km " " 'next-line)
(define-key km "n" 'next-line)