Index: emacs/lisp/ido.el
diff -c emacs/lisp/ido.el:1.73 emacs/lisp/ido.el:1.74
*** emacs/lisp/ido.el:1.73      Wed Aug 17 11:17:41 2005
--- emacs/lisp/ido.el   Thu Aug 18 09:29:48 2005
***************
*** 367,373 ****
  Setting this variable directly does not work.  Use `customize' or
  call the function `ido-everywhere'."
    :set #'(lambda (symbol value)
!          (ido-everywhere value))
    :initialize 'custom-initialize-default
    :type 'boolean
    :group 'ido)
--- 367,373 ----
  Setting this variable directly does not work.  Use `customize' or
  call the function `ido-everywhere'."
    :set #'(lambda (symbol value)
!          (ido-everywhere (if value 1 -1)))
    :initialize 'custom-initialize-default
    :type 'boolean
    :group 'ido)
***************
*** 1367,1373 ****
        (define-key map [remap display-buffer] 'ido-display-buffer)))))
  
  (defun ido-everywhere (arg)
!   "Enable ido everywhere file and directory names are read."
    (interactive "P")
    (setq ido-everywhere (if arg
                           (> (prefix-numeric-value arg) 0)
--- 1367,1374 ----
        (define-key map [remap display-buffer] 'ido-display-buffer)))))
  
  (defun ido-everywhere (arg)
!   "Toggle using ido speed-ups everywhere file and directory names are read.
! With ARG, turn ido speed-up on if arg is positive, off otherwise."
    (interactive "P")
    (setq ido-everywhere (if arg
                           (> (prefix-numeric-value arg) 0)


_______________________________________________
Emacs-diffs mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/emacs-diffs

Reply via email to