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
|
|
|
|
1992-07-22 02:58:48 +00:00
|
|
|
;; Copyright (C) 1985 Free Software Foundation, Inc.
|
|
|
|
|
1992-07-16 21:47:34 +00:00
|
|
|
;; Maintainer: FSF
|
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.
|
|
|
|
|
|
|
|
;; GNU Emacs is free software; you can redistribute it and/or modify
|
|
|
|
;; it under the terms of the GNU General Public License as published by
|
1992-07-16 21:47:34 +00:00
|
|
|
;; the Free Software Foundation; either version 2, or (at your option)
|
1989-10-31 16:00:07 +00:00
|
|
|
;; any later version.
|
|
|
|
|
|
|
|
;; 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
|
1996-01-14 07:34:30 +00:00
|
|
|
;; along with GNU Emacs; see the file COPYING. If not, write to the
|
|
|
|
;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
;; Boston, MA 02111-1307, USA.
|
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)
|
|
|
|
|
2003-09-01 15:45:59 +00:00
|
|
|
;;; arch-tag: e7b48582-c3ea-4386-987a-87415f3c372a
|
1992-05-30 20:24:49 +00:00
|
|
|
;;; underline.el ends here
|