diff options
| author | Richard M. Stallman | 2001-12-30 00:56:40 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2001-12-30 00:56:40 +0000 |
| commit | 44fc58f2dae4af437ea96625372f5cfb44f44e0f (patch) | |
| tree | 1263b0c25ed56c1a37f2980ce7837bb6cf72a777 | |
| parent | e5374284655239600219702f05277ddfea3a5394 (diff) | |
| download | emacs-44fc58f2dae4af437ea96625372f5cfb44f44e0f.tar.gz emacs-44fc58f2dae4af437ea96625372f5cfb44f44e0f.zip | |
(reftex-query-replace-document, reftex-change-label): Doc fix.
| -rw-r--r-- | lisp/ChangeLog | 9 | ||||
| -rw-r--r-- | lisp/textmodes/reftex-global.el | 8 |
2 files changed, 13 insertions, 4 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index a00db0f144b..0b8e43d518e 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,12 @@ | |||
| 1 | 2001-12-29 Markus Rost <rost@math.ohio-state.edu> | ||
| 2 | |||
| 3 | * textmodes/reftex-global.el (reftex-query-replace-document) | ||
| 4 | (reftex-change-label): Doc fix. | ||
| 5 | |||
| 6 | * dired-aux.el (dired-do-query-replace-regexp): Doc fix. | ||
| 7 | |||
| 8 | * progmodes/etags.el (tags-query-replace): Doc fix. | ||
| 9 | |||
| 1 | 2001-12-29 Richard M. Stallman <rms@gnu.org> | 10 | 2001-12-29 Richard M. Stallman <rms@gnu.org> |
| 2 | 11 | ||
| 3 | * progmodes/compile.el (compile-internal): Fix previous change. | 12 | * progmodes/compile.el (compile-internal): Fix previous change. |
diff --git a/lisp/textmodes/reftex-global.el b/lisp/textmodes/reftex-global.el index 49960027f73..6810b80adfc 100644 --- a/lisp/textmodes/reftex-global.el +++ b/lisp/textmodes/reftex-global.el | |||
| @@ -81,9 +81,9 @@ No active TAGS table is required." | |||
| 81 | (tags-search regexp (list 'reftex-all-document-files)))) | 81 | (tags-search regexp (list 'reftex-all-document-files)))) |
| 82 | 82 | ||
| 83 | (defun reftex-query-replace-document (&optional from to delimited) | 83 | (defun reftex-query-replace-document (&optional from to delimited) |
| 84 | "Run a query-replace-regexp of FROM with TO over the entire document. | 84 | "Do `query-replace-regexp' of FROM with TO over the entire document. |
| 85 | Third arg DELIMITED (prefix arg) means replace only word-delimited matches. | 85 | Third arg DELIMITED (prefix arg) means replace only word-delimited matches. |
| 86 | If you exit (\\[keyboard-quit] or ESC), you can resume the query replace | 86 | If you exit (\\[keyboard-quit], RET or q), you can resume the query replace |
| 87 | with the command \\[tags-loop-continue]. | 87 | with the command \\[tags-loop-continue]. |
| 88 | No active TAGS table is required." | 88 | No active TAGS table is required." |
| 89 | (interactive) | 89 | (interactive) |
| @@ -157,9 +157,9 @@ No active TAGS table is required." | |||
| 157 | (message "Document does not contain duplicate labels.")))) | 157 | (message "Document does not contain duplicate labels.")))) |
| 158 | 158 | ||
| 159 | (defun reftex-change-label (&optional from to) | 159 | (defun reftex-change-label (&optional from to) |
| 160 | "Query replace FROM with TO in all \\label and \\ref commands. | 160 | "Run `query-replace-regexp' of FROM with TO in all \\label and \\ref commands. |
| 161 | Works on the entire multifile document. | 161 | Works on the entire multifile document. |
| 162 | If you exit (\\[keyboard-quit] or ESC), you can resume the query replace | 162 | If you exit (\\[keyboard-quit], RET or q), you can resume the query replace |
| 163 | with the command \\[tags-loop-continue]. | 163 | with the command \\[tags-loop-continue]. |
| 164 | No active TAGS table is required." | 164 | No active TAGS table is required." |
| 165 | (interactive) | 165 | (interactive) |