Browse Source

Fix the previous fix.

Carsten Dominik 16 years ago
parent
commit
a6e027f768
1 changed files with 1 additions and 1 deletions
  1. 1 1
      lisp/org-exp.el

+ 1 - 1
lisp/org-exp.el

@@ -583,7 +583,7 @@ Each element is a list of 3 items:
     (while (setq e (pop l))
       (setq s (nth 2 e)
 	    v (if (boundp s) (symbol-value s) nil)
-	    rtn (cons s (cons v rtn))))
+	    rtn (cons (car e) (cons v rtn))))
     rtn))
 
 (defvar org-export-inbuffer-options-extra nil