Changeset 4085 for trunk/lisp/ido.el
- Timestamp:
- 05/18/06 16:19:18 (3 years ago)
- Files:
-
- trunk/lisp/ido.el (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/lisp/ido.el
r4058 r4085 1779 1779 Return the name of a buffer or file selected. 1780 1780 PROMPT is the prompt to give to the user. 1781 DEFAULT if given is the default directoryto start with.1781 DEFAULT if given is the default item to start with. 1782 1782 If REQUIRE-MATCH is non-nil, an existing file must be selected. 1783 1783 If INITIAL is non-nil, it specifies the initial input string." … … 1823 1823 ((eq item 'buffer) 1824 1824 (if (bufferp default) (buffer-name default) default)) 1825 ((stringp default) default) 1825 ((stringp default) 1826 (if (memq item '(file dir)) 1827 (file-name-nondirectory default) 1828 default)) 1826 1829 ((eq item 'file) 1827 1830 (and ido-enable-last-directory-history
