Mercurial > emacs
annotate lisp/textmodes/underline.el @ 837:a8aef92e0025
*** empty log message ***
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Wed, 22 Jul 1992 01:36:20 +0000 |
parents | 38b2499cb3e9 |
children | 2cdce064065f |
rev | line source |
---|---|
657
fec3f9a1e3e5
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
258
diff
changeset
|
1 ;;; underline.el --- insert/remove underlining (done by overstriking) in Emacs. |
fec3f9a1e3e5
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
258
diff
changeset
|
2 |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
657
diff
changeset
|
3 ;; Maintainer: FSF |
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
657
diff
changeset
|
4 ;; Last-Modified: 30 May 1988 |
814
38b2499cb3e9
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
807
diff
changeset
|
5 ;; Keywords: wp |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
657
diff
changeset
|
6 |
36 | 7 ;; Copyright (C) 1985 Free Software Foundation, Inc. |
8 | |
9 ;; This file is part of GNU Emacs. | |
10 | |
11 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
12 ;; it under the terms of the GNU General Public License as published by | |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
657
diff
changeset
|
13 ;; the Free Software Foundation; either version 2, or (at your option) |
36 | 14 ;; any later version. |
15 | |
16 ;; GNU Emacs is distributed in the hope that it will be useful, | |
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
19 ;; GNU General Public License for more details. | |
20 | |
21 ;; You should have received a copy of the GNU General Public License | |
22 ;; along with GNU Emacs; see the file COPYING. If not, write to | |
23 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. | |
24 | |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
657
diff
changeset
|
25 ;;; Code: |
36 | 26 |
258 | 27 ;;;###autoload |
36 | 28 (defun underline-region (start end) |
29 "Underline all nonblank characters in the region. | |
30 Works by overstriking underscores. | |
31 Called from program, takes two arguments START and END | |
32 which specify the range to operate on." | |
33 (interactive "r") | |
34 (save-excursion | |
35 (let ((end1 (make-marker))) | |
36 (move-marker end1 (max start end)) | |
37 (goto-char (min start end)) | |
38 (while (< (point) end1) | |
39 (or (looking-at "[_\^@- ]") | |
40 (insert "_")) | |
41 (forward-char 1))))) | |
42 | |
258 | 43 ;;;###autoload |
36 | 44 (defun ununderline-region (start end) |
45 "Remove all underlining (overstruck underscores) in the region. | |
46 Called from program, takes two arguments START and END | |
47 which specify the range to operate on." | |
48 (interactive "r") | |
49 (save-excursion | |
50 (let ((end1 (make-marker))) | |
51 (move-marker end1 (max start end)) | |
52 (goto-char (min start end)) | |
53 (while (re-search-forward "_\\|_" end1 t) | |
54 (delete-char -2))))) | |
657
fec3f9a1e3e5
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
258
diff
changeset
|
55 |
fec3f9a1e3e5
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
258
diff
changeset
|
56 ;;; underline.el ends here |