Browse Source

Fix typo affecting iswitchb completion

Carsten Dominik 15 years ago
parent
commit
5e40b963cc
2 changed files with 3 additions and 1 deletions
  1. 2 0
      lisp/ChangeLog
  2. 1 1
      lisp/org.el

+ 2 - 0
lisp/ChangeLog

@@ -1,5 +1,7 @@
 2009-09-16  Carsten Dominik  <carsten.dominik@gmail.com>
 
+	* org.el (org-iswitchb-completing-read): Fix typo.
+
 	* org-crypt.el: New file.
 
 	* org.el: Add an entry for org-crypt.

+ 1 - 1
lisp/org.el

@@ -7724,7 +7724,7 @@ Use TAB to complete link prefixes, then RET for type-specific completion support
   "Use iswitch as a completing-read replacement to choose from choices.
 PROMPT is a string to prompt with.  CHOICES is a list of strings to choose
 from."
-  (let* ((switchb-use-virtual-buffers nil)
+  (let* ((iswitchb-use-virtual-buffers nil)
 	 (iswitchb-make-buflist-hook
 	  (lambda ()
 	    (setq iswitchb-temp-buflist choices))))