diff options
| author | Kim F. Storm | 2007-02-05 22:36:13 +0000 |
|---|---|---|
| committer | Kim F. Storm | 2007-02-05 22:36:13 +0000 |
| commit | 74a5d578f1991fa41d156e9c40c040dcc05e9dd8 (patch) | |
| tree | 979547bd729e6fdf519015cf8f32458c412ab7be | |
| parent | 0fd91d23cf0edccaed98661356ca350c064b3ce4 (diff) | |
| download | emacs-74a5d578f1991fa41d156e9c40c040dcc05e9dd8.tar.gz emacs-74a5d578f1991fa41d156e9c40c040dcc05e9dd8.zip | |
Doc fixes.
| -rw-r--r-- | lisp/ido.el | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/lisp/ido.el b/lisp/ido.el index 52460574718..ad3f4329e6b 100644 --- a/lisp/ido.el +++ b/lisp/ido.el | |||
| @@ -3939,7 +3939,7 @@ in a separate window. | |||
| 3939 | (defun ido-switch-buffer-other-window () | 3939 | (defun ido-switch-buffer-other-window () |
| 3940 | "Switch to another buffer and show it in another window. | 3940 | "Switch to another buffer and show it in another window. |
| 3941 | The buffer name is selected interactively by typing a substring. | 3941 | The buffer name is selected interactively by typing a substring. |
| 3942 | For details of keybindings, do `\\[describe-function] ido'." | 3942 | For details of keybindings, see `ido-switch-buffer'." |
| 3943 | (interactive) | 3943 | (interactive) |
| 3944 | (ido-buffer-internal 'other-window 'switch-to-buffer-other-window)) | 3944 | (ido-buffer-internal 'other-window 'switch-to-buffer-other-window)) |
| 3945 | 3945 | ||
| @@ -3947,7 +3947,7 @@ For details of keybindings, do `\\[describe-function] ido'." | |||
| 3947 | (defun ido-display-buffer () | 3947 | (defun ido-display-buffer () |
| 3948 | "Display a buffer in another window but don't select it. | 3948 | "Display a buffer in another window but don't select it. |
| 3949 | The buffer name is selected interactively by typing a substring. | 3949 | The buffer name is selected interactively by typing a substring. |
| 3950 | For details of keybindings, do `\\[describe-function] ido'." | 3950 | For details of keybindings, see `ido-switch-buffer'." |
| 3951 | (interactive) | 3951 | (interactive) |
| 3952 | (ido-buffer-internal 'display 'display-buffer nil nil nil 'ignore)) | 3952 | (ido-buffer-internal 'display 'display-buffer nil nil nil 'ignore)) |
| 3953 | 3953 | ||
| @@ -3955,7 +3955,7 @@ For details of keybindings, do `\\[describe-function] ido'." | |||
| 3955 | (defun ido-kill-buffer () | 3955 | (defun ido-kill-buffer () |
| 3956 | "Kill a buffer. | 3956 | "Kill a buffer. |
| 3957 | The buffer name is selected interactively by typing a substring. | 3957 | The buffer name is selected interactively by typing a substring. |
| 3958 | For details of keybindings, do `\\[describe-function] ido'." | 3958 | For details of keybindings, see `ido-switch-buffer'." |
| 3959 | (interactive) | 3959 | (interactive) |
| 3960 | (ido-buffer-internal 'kill 'kill-buffer "Kill buffer: " (buffer-name (current-buffer)) nil 'ignore)) | 3960 | (ido-buffer-internal 'kill 'kill-buffer "Kill buffer: " (buffer-name (current-buffer)) nil 'ignore)) |
| 3961 | 3961 | ||
| @@ -3963,7 +3963,7 @@ For details of keybindings, do `\\[describe-function] ido'." | |||
| 3963 | (defun ido-insert-buffer () | 3963 | (defun ido-insert-buffer () |
| 3964 | "Insert contents of a buffer in current buffer after point. | 3964 | "Insert contents of a buffer in current buffer after point. |
| 3965 | The buffer name is selected interactively by typing a substring. | 3965 | The buffer name is selected interactively by typing a substring. |
| 3966 | For details of keybindings, do `\\[describe-function] ido'." | 3966 | For details of keybindings, see `ido-switch-buffer'." |
| 3967 | (interactive) | 3967 | (interactive) |
| 3968 | (ido-buffer-internal 'insert 'insert-buffer "Insert buffer: " nil nil 'ido-enter-insert-file)) | 3968 | (ido-buffer-internal 'insert 'insert-buffer "Insert buffer: " nil nil 'ido-enter-insert-file)) |
| 3969 | 3969 | ||
| @@ -3971,7 +3971,7 @@ For details of keybindings, do `\\[describe-function] ido'." | |||
| 3971 | (defun ido-switch-buffer-other-frame () | 3971 | (defun ido-switch-buffer-other-frame () |
| 3972 | "Switch to another buffer and show it in another frame. | 3972 | "Switch to another buffer and show it in another frame. |
| 3973 | The buffer name is selected interactively by typing a substring. | 3973 | The buffer name is selected interactively by typing a substring. |
| 3974 | For details of keybindings, do `\\[describe-function] ido'." | 3974 | For details of keybindings, see `ido-switch-buffer'." |
| 3975 | (interactive) | 3975 | (interactive) |
| 3976 | (if ido-mode | 3976 | (if ido-mode |
| 3977 | (ido-buffer-internal 'other-frame) | 3977 | (ido-buffer-internal 'other-frame) |
| @@ -4034,7 +4034,7 @@ in a separate window. | |||
| 4034 | (defun ido-find-file-other-window () | 4034 | (defun ido-find-file-other-window () |
| 4035 | "Switch to another file and show it in another window. | 4035 | "Switch to another file and show it in another window. |
| 4036 | The file name is selected interactively by typing a substring. | 4036 | The file name is selected interactively by typing a substring. |
| 4037 | For details of keybindings, do `\\[describe-function] ido-find-file'." | 4037 | For details of keybindings, see `ido-find-file'." |
| 4038 | (interactive) | 4038 | (interactive) |
| 4039 | (ido-file-internal 'other-window 'find-file-other-window)) | 4039 | (ido-file-internal 'other-window 'find-file-other-window)) |
| 4040 | 4040 | ||
| @@ -4042,7 +4042,7 @@ For details of keybindings, do `\\[describe-function] ido-find-file'." | |||
| 4042 | (defun ido-find-alternate-file () | 4042 | (defun ido-find-alternate-file () |
| 4043 | "Switch to another file and show it in another window. | 4043 | "Switch to another file and show it in another window. |
| 4044 | The file name is selected interactively by typing a substring. | 4044 | The file name is selected interactively by typing a substring. |
| 4045 | For details of keybindings, do `\\[describe-function] ido-find-file'." | 4045 | For details of keybindings, see `ido-find-file'." |
| 4046 | (interactive) | 4046 | (interactive) |
| 4047 | (ido-file-internal 'alt-file 'find-alternate-file nil "Find alternate file: ")) | 4047 | (ido-file-internal 'alt-file 'find-alternate-file nil "Find alternate file: ")) |
| 4048 | 4048 | ||
| @@ -4050,7 +4050,7 @@ For details of keybindings, do `\\[describe-function] ido-find-file'." | |||
| 4050 | (defun ido-find-file-read-only () | 4050 | (defun ido-find-file-read-only () |
| 4051 | "Edit file read-only with name obtained via minibuffer. | 4051 | "Edit file read-only with name obtained via minibuffer. |
| 4052 | The file name is selected interactively by typing a substring. | 4052 | The file name is selected interactively by typing a substring. |
| 4053 | For details of keybindings, do `\\[describe-function] ido-find-file'." | 4053 | For details of keybindings, see `ido-find-file'." |
| 4054 | (interactive) | 4054 | (interactive) |
| 4055 | (ido-file-internal 'read-only 'find-file-read-only nil "Find file read-only: ")) | 4055 | (ido-file-internal 'read-only 'find-file-read-only nil "Find file read-only: ")) |
| 4056 | 4056 | ||
| @@ -4058,7 +4058,7 @@ For details of keybindings, do `\\[describe-function] ido-find-file'." | |||
| 4058 | (defun ido-find-file-read-only-other-window () | 4058 | (defun ido-find-file-read-only-other-window () |
| 4059 | "Edit file read-only in other window with name obtained via minibuffer. | 4059 | "Edit file read-only in other window with name obtained via minibuffer. |
| 4060 | The file name is selected interactively by typing a substring. | 4060 | The file name is selected interactively by typing a substring. |
| 4061 | For details of keybindings, do `\\[describe-function] ido-find-file'." | 4061 | For details of keybindings, see `ido-find-file'." |
| 4062 | (interactive) | 4062 | (interactive) |
| 4063 | (ido-file-internal 'read-only 'find-file-read-only-other-window nil "Find file read-only other window: ")) | 4063 | (ido-file-internal 'read-only 'find-file-read-only-other-window nil "Find file read-only other window: ")) |
| 4064 | 4064 | ||
| @@ -4066,7 +4066,7 @@ For details of keybindings, do `\\[describe-function] ido-find-file'." | |||
| 4066 | (defun ido-find-file-read-only-other-frame () | 4066 | (defun ido-find-file-read-only-other-frame () |
| 4067 | "Edit file read-only in other frame with name obtained via minibuffer. | 4067 | "Edit file read-only in other frame with name obtained via minibuffer. |
| 4068 | The file name is selected interactively by typing a substring. | 4068 | The file name is selected interactively by typing a substring. |
| 4069 | For details of keybindings, do `\\[describe-function] ido-find-file'." | 4069 | For details of keybindings, see `ido-find-file'." |
| 4070 | (interactive) | 4070 | (interactive) |
| 4071 | (ido-file-internal 'read-only 'find-file-read-only-other-frame nil "Find file read-only other frame: ")) | 4071 | (ido-file-internal 'read-only 'find-file-read-only-other-frame nil "Find file read-only other frame: ")) |
| 4072 | 4072 | ||
| @@ -4074,7 +4074,7 @@ For details of keybindings, do `\\[describe-function] ido-find-file'." | |||
| 4074 | (defun ido-display-file () | 4074 | (defun ido-display-file () |
| 4075 | "Display a file in another window but don't select it. | 4075 | "Display a file in another window but don't select it. |
| 4076 | The file name is selected interactively by typing a substring. | 4076 | The file name is selected interactively by typing a substring. |
| 4077 | For details of keybindings, do `\\[describe-function] ido-find-file'." | 4077 | For details of keybindings, see `ido-find-file'." |
| 4078 | (interactive) | 4078 | (interactive) |
| 4079 | (ido-file-internal 'display nil nil nil nil nil 'ignore)) | 4079 | (ido-file-internal 'display nil nil nil nil nil 'ignore)) |
| 4080 | 4080 | ||
| @@ -4082,7 +4082,7 @@ For details of keybindings, do `\\[describe-function] ido-find-file'." | |||
| 4082 | (defun ido-find-file-other-frame () | 4082 | (defun ido-find-file-other-frame () |
| 4083 | "Switch to another file and show it in another frame. | 4083 | "Switch to another file and show it in another frame. |
| 4084 | The file name is selected interactively by typing a substring. | 4084 | The file name is selected interactively by typing a substring. |
| 4085 | For details of keybindings, do `\\[describe-function] ido-find-file'." | 4085 | For details of keybindings, see `ido-find-file'." |
| 4086 | (interactive) | 4086 | (interactive) |
| 4087 | (ido-file-internal 'other-frame 'find-file-other-frame)) | 4087 | (ido-file-internal 'other-frame 'find-file-other-frame)) |
| 4088 | 4088 | ||
| @@ -4090,7 +4090,7 @@ For details of keybindings, do `\\[describe-function] ido-find-file'." | |||
| 4090 | (defun ido-write-file () | 4090 | (defun ido-write-file () |
| 4091 | "Write current buffer to a file. | 4091 | "Write current buffer to a file. |
| 4092 | The file name is selected interactively by typing a substring. | 4092 | The file name is selected interactively by typing a substring. |
| 4093 | For details of keybindings, do `\\[describe-function] ido-find-file'." | 4093 | For details of keybindings, see `ido-find-file'." |
| 4094 | (interactive) | 4094 | (interactive) |
| 4095 | (let ((ido-process-ignore-lists t) | 4095 | (let ((ido-process-ignore-lists t) |
| 4096 | (ido-work-directory-match-only nil) | 4096 | (ido-work-directory-match-only nil) |
| @@ -4104,7 +4104,7 @@ For details of keybindings, do `\\[describe-function] ido-find-file'." | |||
| 4104 | (defun ido-insert-file () | 4104 | (defun ido-insert-file () |
| 4105 | "Insert contents of file in current buffer. | 4105 | "Insert contents of file in current buffer. |
| 4106 | The file name is selected interactively by typing a substring. | 4106 | The file name is selected interactively by typing a substring. |
| 4107 | For details of keybindings, do `\\[describe-function] ido-find-file'." | 4107 | For details of keybindings, see `ido-find-file'." |
| 4108 | (interactive) | 4108 | (interactive) |
| 4109 | (ido-file-internal 'insert 'insert-file nil "Insert file: " nil nil 'ido-enter-insert-buffer)) | 4109 | (ido-file-internal 'insert 'insert-file nil "Insert file: " nil nil 'ido-enter-insert-buffer)) |
| 4110 | 4110 | ||
| @@ -4112,7 +4112,7 @@ For details of keybindings, do `\\[describe-function] ido-find-file'." | |||
| 4112 | (defun ido-dired () | 4112 | (defun ido-dired () |
| 4113 | "Call `dired' the ido way. | 4113 | "Call `dired' the ido way. |
| 4114 | The directory is selected interactively by typing a substring. | 4114 | The directory is selected interactively by typing a substring. |
| 4115 | For details of keybindings, do `\\[describe-function] ido-find-file'." | 4115 | For details of keybindings, see `ido-find-file'." |
| 4116 | (interactive) | 4116 | (interactive) |
| 4117 | (let ((ido-report-no-match nil) | 4117 | (let ((ido-report-no-match nil) |
| 4118 | (ido-auto-merge-work-directories-length -1)) | 4118 | (ido-auto-merge-work-directories-length -1)) |
| @@ -4121,7 +4121,7 @@ For details of keybindings, do `\\[describe-function] ido-find-file'." | |||
| 4121 | (defun ido-list-directory () | 4121 | (defun ido-list-directory () |
| 4122 | "Call `list-directory' the ido way. | 4122 | "Call `list-directory' the ido way. |
| 4123 | The directory is selected interactively by typing a substring. | 4123 | The directory is selected interactively by typing a substring. |
| 4124 | For details of keybindings, do `\\[describe-function] ido-find-file'." | 4124 | For details of keybindings, see `ido-find-file'." |
| 4125 | (interactive) | 4125 | (interactive) |
| 4126 | (let ((ido-report-no-match nil) | 4126 | (let ((ido-report-no-match nil) |
| 4127 | (ido-auto-merge-work-directories-length -1)) | 4127 | (ido-auto-merge-work-directories-length -1)) |