/[emacs]/emacs/lisp/ido.el
ViewVC logotype

Diff of /emacs/lisp/ido.el

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.73 by kfstorm, Wed Aug 17 11:17:41 2005 UTC revision 1.74 by kfstorm, Thu Aug 18 09:29:48 2005 UTC
# Line 367  use either \\[customize] or the function Line 367  use either \\[customize] or the function
367  Setting this variable directly does not work.  Use `customize' or  Setting this variable directly does not work.  Use `customize' or
368  call the function `ido-everywhere'."  call the function `ido-everywhere'."
369    :set #'(lambda (symbol value)    :set #'(lambda (symbol value)
370             (ido-everywhere value))             (ido-everywhere (if value 1 -1)))
371    :initialize 'custom-initialize-default    :initialize 'custom-initialize-default
372    :type 'boolean    :type 'boolean
373    :group 'ido)    :group 'ido)
# Line 1367  This function also adds a hook to the mi Line 1367  This function also adds a hook to the mi
1367          (define-key map [remap display-buffer] 'ido-display-buffer)))))          (define-key map [remap display-buffer] 'ido-display-buffer)))))
1368    
1369  (defun ido-everywhere (arg)  (defun ido-everywhere (arg)
1370    "Enable ido everywhere file and directory names are read."    "Toggle using ido speed-ups everywhere file and directory names are read.
1371    With ARG, turn ido speed-up on if arg is positive, off otherwise."
1372    (interactive "P")    (interactive "P")
1373    (setq ido-everywhere (if arg    (setq ido-everywhere (if arg
1374                             (> (prefix-numeric-value arg) 0)                             (> (prefix-numeric-value arg) 0)

Legend:
Removed from v.1.73  
changed lines
  Added in v.1.74

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26