diff options
author | Gerd Moellmann <gerd@gnu.org> | 2000-11-28 16:50:40 +0000 |
---|---|---|
committer | Gerd Moellmann <gerd@gnu.org> | 2000-11-28 16:50:40 +0000 |
commit | e43ece729df1a858e89a97396f2a47a6c3bc5282 (patch) | |
tree | b2c2ddcee7dd796e24f1c267fda04fb9feb5b188 | |
parent | ba7e40eb1de0393d127516909c6011e92cae9b3f (diff) | |
download | emacs-e43ece729df1a858e89a97396f2a47a6c3bc5282.tar.gz |
Add hints to `automatic-hscrolling' to doc strings.
-rw-r--r-- | lisp/hscroll.el | 12 |
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) |