diff options
| author | Richard M. Stallman | 1997-07-05 00:56:01 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1997-07-05 00:56:01 +0000 |
| commit | 70837f2c6d27cba704e4992dae78e0b2d95cf412 (patch) | |
| tree | 2be9856b0aa13f49e29d40b1f1eb10bc7c1d75c1 | |
| parent | 4fa15f59e2434fe7956a19339a7d75c953e92313 (diff) | |
| download | emacs-70837f2c6d27cba704e4992dae78e0b2d95cf412.tar.gz emacs-70837f2c6d27cba704e4992dae78e0b2d95cf412.zip | |
(complete-symbol): Accept an argument.
(debug-ignored-errors): Add ^ to "No tags table loaded".
Make the etags.el strings correspond to latest etags.el.
| -rw-r--r-- | lisp/bindings.el | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lisp/bindings.el b/lisp/bindings.el index 55db199eb70..c8d37596f90 100644 --- a/lisp/bindings.el +++ b/lisp/bindings.el | |||
| @@ -197,16 +197,16 @@ is okay. See `mode-line-format'.") | |||
| 197 | "^No manpage [0-9]* found$" | 197 | "^No manpage [0-9]* found$" |
| 198 | 198 | ||
| 199 | ;; etags | 199 | ;; etags |
| 200 | "^No tags table in use! Use .* to select one\\.$" | 200 | "^No tags table in use; use .* to select one$" |
| 201 | "^There is no default tag$" | 201 | "^There is no default tag$" |
| 202 | "^No previous tag locations$" | 202 | "^No previous tag locations$" |
| 203 | "^File .* is not a valid tags table$" | 203 | "^File .* is not a valid tags table$" |
| 204 | "^No \\(more \\|\\)tags \\(matching\\|containing\\) " | 204 | "^No \\(more \\|\\)tags \\(matching\\|containing\\) " |
| 205 | "^Rerun etags: `.*' not found in " | 205 | "^Rerun etags: `.*' not found in " |
| 206 | "^All files processed\\.$" | 206 | "^All files processed$" |
| 207 | "^No .* or .* in progress.$" | 207 | "^No .* or .* in progress$" |
| 208 | "^File .* not in current tags tables$" | 208 | "^File .* not in current tags tables$" |
| 209 | "No tags table loaded." | 209 | "^No tags table loaded" |
| 210 | "^Nothing to complete$" | 210 | "^Nothing to complete$" |
| 211 | 211 | ||
| 212 | ;; BBDB | 212 | ;; BBDB |
| @@ -218,7 +218,7 @@ is okay. See `mode-line-format'.") | |||
| 218 | 218 | ||
| 219 | (define-key esc-map "\t" 'complete-symbol) | 219 | (define-key esc-map "\t" 'complete-symbol) |
| 220 | 220 | ||
| 221 | (defun complete-symbol () | 221 | (defun complete-symbol (arg) |
| 222 | "Perform tags completion on the text around point. | 222 | "Perform tags completion on the text around point. |
| 223 | Completes to the set of names listed in the current tags table. | 223 | Completes to the set of names listed in the current tags table. |
| 224 | The string to complete is chosen in the same way as the default | 224 | The string to complete is chosen in the same way as the default |