aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2001-12-30 00:56:40 +0000
committerRichard M. Stallman2001-12-30 00:56:40 +0000
commit44fc58f2dae4af437ea96625372f5cfb44f44e0f (patch)
tree1263b0c25ed56c1a37f2980ce7837bb6cf72a777
parente5374284655239600219702f05277ddfea3a5394 (diff)
downloademacs-44fc58f2dae4af437ea96625372f5cfb44f44e0f.tar.gz
emacs-44fc58f2dae4af437ea96625372f5cfb44f44e0f.zip
(reftex-query-replace-document, reftex-change-label): Doc fix.
-rw-r--r--lisp/ChangeLog9
-rw-r--r--lisp/textmodes/reftex-global.el8
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 @@
12001-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
12001-12-29 Richard M. Stallman <rms@gnu.org> 102001-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.
85Third arg DELIMITED (prefix arg) means replace only word-delimited matches. 85Third arg DELIMITED (prefix arg) means replace only word-delimited matches.
86If you exit (\\[keyboard-quit] or ESC), you can resume the query replace 86If you exit (\\[keyboard-quit], RET or q), you can resume the query replace
87with the command \\[tags-loop-continue]. 87with the command \\[tags-loop-continue].
88No active TAGS table is required." 88No 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.
161Works on the entire multifile document. 161Works on the entire multifile document.
162If you exit (\\[keyboard-quit] or ESC), you can resume the query replace 162If you exit (\\[keyboard-quit], RET or q), you can resume the query replace
163with the command \\[tags-loop-continue]. 163with the command \\[tags-loop-continue].
164No active TAGS table is required." 164No active TAGS table is required."
165 (interactive) 165 (interactive)