summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lisp/hscroll.el12
1 files changed, 8 insertions, 4 deletions
diff --git a/lisp/hscroll.el b/lisp/hscroll.el
index 2987fc8f770..996cd07c5e4 100644
--- a/lisp/hscroll.el
+++ b/lisp/hscroll.el
@@ -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)