aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/textmodes
diff options
context:
space:
mode:
authorDave Love1999-07-20 15:53:45 +0000
committerDave Love1999-07-20 15:53:45 +0000
commit8371c2f27d045c111fdb286286f216c890ece26d (patch)
tree30809eefb236b93aaa1024f3fabfb6632cddaa6f /lisp/textmodes
parent5d8b66ebefa95595783f89b0bdfe1d624259bb19 (diff)
downloademacs-8371c2f27d045c111fdb286286f216c890ece26d.tar.gz
emacs-8371c2f27d045c111fdb286286f216c890ece26d.zip
(underline-region, ununderline-region): Add * to interactive spec.
Diffstat (limited to 'lisp/textmodes')
-rw-r--r--lisp/textmodes/underline.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/textmodes/underline.el b/lisp/textmodes/underline.el
index 20ffa315001..a7e6d30bd5c 100644
--- a/lisp/textmodes/underline.el
+++ b/lisp/textmodes/underline.el
@@ -37,7 +37,7 @@
37Works by overstriking underscores. 37Works by overstriking underscores.
38Called from program, takes two arguments START and END 38Called from program, takes two arguments START and END
39which specify the range to operate on." 39which specify the range to operate on."
40 (interactive "r") 40 (interactive "*r")
41 (save-excursion 41 (save-excursion
42 (let ((end1 (make-marker))) 42 (let ((end1 (make-marker)))
43 (move-marker end1 (max start end)) 43 (move-marker end1 (max start end))
@@ -52,7 +52,7 @@ which specify the range to operate on."
52 "Remove all underlining (overstruck underscores) in the region. 52 "Remove all underlining (overstruck underscores) in the region.
53Called from program, takes two arguments START and END 53Called from program, takes two arguments START and END
54which specify the range to operate on." 54which specify the range to operate on."
55 (interactive "r") 55 (interactive "*r")
56 (save-excursion 56 (save-excursion
57 (let ((end1 (make-marker))) 57 (let ((end1 (make-marker)))
58 (move-marker end1 (max start end)) 58 (move-marker end1 (max start end))