diff options
| author | Dave Love | 1999-07-20 15:53:45 +0000 |
|---|---|---|
| committer | Dave Love | 1999-07-20 15:53:45 +0000 |
| commit | 8371c2f27d045c111fdb286286f216c890ece26d (patch) | |
| tree | 30809eefb236b93aaa1024f3fabfb6632cddaa6f /lisp/textmodes | |
| parent | 5d8b66ebefa95595783f89b0bdfe1d624259bb19 (diff) | |
| download | emacs-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.el | 4 |
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 @@ | |||
| 37 | Works by overstriking underscores. | 37 | Works by overstriking underscores. |
| 38 | Called from program, takes two arguments START and END | 38 | Called from program, takes two arguments START and END |
| 39 | which specify the range to operate on." | 39 | which 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. |
| 53 | Called from program, takes two arguments START and END | 53 | Called from program, takes two arguments START and END |
| 54 | which specify the range to operate on." | 54 | which 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)) |