emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/lisp/ido.el


From: Kim F . Storm
Subject: [Emacs-diffs] Changes to emacs/lisp/ido.el
Date: Thu, 18 Aug 2005 05:29:48 -0400

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)




reply via email to

[Prev in Thread] Current Thread [Next in Thread]