aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuanma Barranquero2003-02-05 23:15:41 +0000
committerJuanma Barranquero2003-02-05 23:15:41 +0000
commitc3c5cfdb93474b702cb9a0de3d98befc4aa9a401 (patch)
tree5f425695f3410adde79b0cc88fd34e1e499b0440
parentc6a7f938698c399da1b6dab7d27ad8faba65a842 (diff)
downloademacs-c3c5cfdb93474b702cb9a0de3d98befc4aa9a401.tar.gz
emacs-c3c5cfdb93474b702cb9a0de3d98befc4aa9a401.zip
(outline-visible): Add obsolescence declaration and remove redundant info from
docstring.
-rw-r--r--lisp/textmodes/outline.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/textmodes/outline.el b/lisp/textmodes/outline.el
index ed04dd11932..ffb9c3bd881 100644
--- a/lisp/textmodes/outline.el
+++ b/lisp/textmodes/outline.el
@@ -342,9 +342,10 @@ at the end of the buffer."
342(defsubst outline-invisible-p () 342(defsubst outline-invisible-p ()
343 "Non-nil if the character after point is invisible." 343 "Non-nil if the character after point is invisible."
344 (get-char-property (point) 'invisible)) 344 (get-char-property (point) 'invisible))
345
345(defun outline-visible () 346(defun outline-visible ()
346 "Obsolete. Use `outline-invisible-p'."
347 (not (outline-invisible-p))) 347 (not (outline-invisible-p)))
348(make-obsolete 'outline-visible 'outline-invisible-p)
348 349
349(defun outline-back-to-heading (&optional invisible-ok) 350(defun outline-back-to-heading (&optional invisible-ok)
350 "Move to previous heading line, or beg of this line if it's a heading. 351 "Move to previous heading line, or beg of this line if it's a heading.