Browse Source

Fix binding problem in org-without-partial-completion.

Thanks to Paul Sexton for spotting this.
Bastien Guerry 14 years ago
parent
commit
ed8627de92
1 changed files with 1 additions and 1 deletions
  1. 1 1
      lisp/org-macs.el

+ 1 - 1
lisp/org-macs.el

@@ -113,7 +113,7 @@ Also, do not record undo information."
 
 (defmacro org-without-partial-completion (&rest body)
   `(let ((pc-mode (and (boundp 'partial-completion-mode)
-		       partial-completion-mode)))
+		       'partial-completion-mode)))
      (unwind-protect
 	 (progn
 	   (when pc-mode (funcall pc-mode -1))