Add hints to `automatic-hscrolling' to doc strings.

This commit is contained in:
Gerd Moellmann 2000-11-28 16:50:40 +00:00
parent ba7e40eb1d
commit e43ece729d

View file

@ -75,23 +75,27 @@ to hscroll from your init file and code."
;;;###autoload
(defun turn-on-hscroll ()
"This function is obsolete.
Emacs now does hscrolling automatically, if `truncate-lines' is non-nil.")
Emacs now does hscrolling automatically, if `truncate-lines' is non-nil.
Also see `automatic-hscrolling'.")
;;;###autoload
(defun hscroll-mode (&optional arg)
"This function is obsolete.
Emacs now does hscrolling automatically, if `truncate-lines' is non-nil."
Emacs now does hscrolling automatically, if `truncate-lines' is non-nil.
Also see `automatic-hscrolling'."
(interactive "P"))
;;;###autoload
(defun hscroll-global-mode (&optional arg)
"This function is obsolete.
Emacs now does hscrolling automatically, if `truncate-lines' is non-nil."
Emacs now does hscrolling automatically, if `truncate-lines' is non-nil.
Also see `automatic-hscrolling'."
(interactive "P"))
(defun hscroll-window-maybe ()
"This function is obsolete.
Emacs now does hscrolling automatically, if `truncate-lines' is non-nil."
Emacs now does hscrolling automatically, if `truncate-lines' is non-nil.
Also see `automatic-hscrolling'."
(interactive))
(provide 'hscroll)