From: Gerd Moellmann Date: Tue, 28 Nov 2000 16:50:40 +0000 (+0000) Subject: Add hints to `automatic-hscrolling' to doc strings. X-Git-Tag: emacs-pretest-21.0.92~1 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=e43ece729df1a858e89a97396f2a47a6c3bc5282;p=emacs.git Add hints to `automatic-hscrolling' to doc strings. --- 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)