2001-07-15 16:15:35 +00:00
|
|
|
;;; underline.el --- insert/remove underlining (done by overstriking) in Emacs
|
1992-05-30 20:24:49 +00:00
|
|
|
|
2015-01-01 22:26:41 +00:00
|
|
|
;; Copyright (C) 1985, 2001-2015 Free Software Foundation, Inc.
|
1992-07-22 02:58:48 +00:00
|
|
|
|
2014-02-10 01:34:22 +00:00
|
|
|
;; Maintainer: emacs-devel@gnu.org
|
1992-07-17 20:24:00 +00:00
|
|
|
;; Keywords: wp
|
1992-07-16 21:47:34 +00:00
|
|
|
|
1989-10-31 16:00:07 +00:00
|
|
|
;; This file is part of GNU Emacs.
|
|
|
|
|
2008-05-06 04:34:22 +00:00
|
|
|
;; GNU Emacs is free software: you can redistribute it and/or modify
|
1989-10-31 16:00:07 +00:00
|
|
|
;; it under the terms of the GNU General Public License as published by
|
2008-05-06 04:34:22 +00:00
|
|
|
;; the Free Software Foundation, either version 3 of the License, or
|
|
|
|
;; (at your option) any later version.
|
1989-10-31 16:00:07 +00:00
|
|
|
|
|
|
|
;; GNU Emacs is distributed in the hope that it will be useful,
|
|
|
|
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
;; GNU General Public License for more details.
|
|
|
|
|
|
|
|
;; You should have received a copy of the GNU General Public License
|
2008-05-06 04:34:22 +00:00
|
|
|
;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
|
1989-10-31 16:00:07 +00:00
|
|
|
|
1993-03-22 22:44:33 +00:00
|
|
|
;;; Commentary:
|
|
|
|
|
|
|
|
;; This package deals with the primitive form of underlining
|
|
|
|
;; consisting of prefixing each character with "_\^h". The entry
|
|
|
|
;; point `underline-region' performs such underlining on a region.
|
|
|
|
;; The entry point `ununderline-region' removes it.
|
|
|
|
|
1992-07-16 21:47:34 +00:00
|
|
|
;;; Code:
|
1989-10-31 16:00:07 +00:00
|
|
|
|
1991-05-09 21:50:55 +00:00
|
|
|
;;;###autoload
|
1989-10-31 16:00:07 +00:00
|
|
|
(defun underline-region (start end)
|
|
|
|
"Underline all nonblank characters in the region.
|
|
|
|
Works by overstriking underscores.
|
|
|
|
Called from program, takes two arguments START and END
|
|
|
|
which specify the range to operate on."
|
1999-07-20 15:53:45 +00:00
|
|
|
(interactive "*r")
|
1989-10-31 16:00:07 +00:00
|
|
|
(save-excursion
|
|
|
|
(let ((end1 (make-marker)))
|
|
|
|
(move-marker end1 (max start end))
|
|
|
|
(goto-char (min start end))
|
|
|
|
(while (< (point) end1)
|
|
|
|
(or (looking-at "[_\^@- ]")
|
1994-03-14 21:27:41 +00:00
|
|
|
(insert "_\b"))
|
1989-10-31 16:00:07 +00:00
|
|
|
(forward-char 1)))))
|
|
|
|
|
1991-05-09 21:50:55 +00:00
|
|
|
;;;###autoload
|
1989-10-31 16:00:07 +00:00
|
|
|
(defun ununderline-region (start end)
|
|
|
|
"Remove all underlining (overstruck underscores) in the region.
|
|
|
|
Called from program, takes two arguments START and END
|
|
|
|
which specify the range to operate on."
|
1999-07-20 15:53:45 +00:00
|
|
|
(interactive "*r")
|
1989-10-31 16:00:07 +00:00
|
|
|
(save-excursion
|
|
|
|
(let ((end1 (make-marker)))
|
|
|
|
(move-marker end1 (max start end))
|
|
|
|
(goto-char (min start end))
|
1994-03-14 21:27:41 +00:00
|
|
|
(while (re-search-forward "_\b\\|\b_" end1 t)
|
1989-10-31 16:00:07 +00:00
|
|
|
(delete-char -2)))))
|
1992-05-30 20:24:49 +00:00
|
|
|
|
1997-06-22 18:57:55 +00:00
|
|
|
(provide 'underline)
|
|
|
|
|
1992-05-30 20:24:49 +00:00
|
|
|
;;; underline.el ends here
|