mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-11-23 07:19:15 +00:00
(underline-region, ununderline-region): Add * to interactive spec.
This commit is contained in:
parent
5d8b66ebef
commit
8371c2f27d
@ -37,7 +37,7 @@
|
||||
Works by overstriking underscores.
|
||||
Called from program, takes two arguments START and END
|
||||
which specify the range to operate on."
|
||||
(interactive "r")
|
||||
(interactive "*r")
|
||||
(save-excursion
|
||||
(let ((end1 (make-marker)))
|
||||
(move-marker end1 (max start end))
|
||||
@ -52,7 +52,7 @@ which specify the range to operate on."
|
||||
"Remove all underlining (overstruck underscores) in the region.
|
||||
Called from program, takes two arguments START and END
|
||||
which specify the range to operate on."
|
||||
(interactive "r")
|
||||
(interactive "*r")
|
||||
(save-excursion
|
||||
(let ((end1 (make-marker)))
|
||||
(move-marker end1 (max start end))
|
||||
|
Loading…
Reference in New Issue
Block a user