# HG changeset patch # User Richard M. Stallman # Date 855271412 0 # Node ID 8134c62c03d0d2d167757cf2cd7c0b1ab8233f3d # Parent 71aff157cff244c9c7df37f9a4ef5e55c2c6d701 (auto-show-mode): Doc fix. diff -r 71aff157cff2 -r 8134c62c03d0 lisp/auto-show.el --- a/lisp/auto-show.el Thu Feb 06 09:13:29 1997 +0000 +++ b/lisp/auto-show.el Thu Feb 06 23:23:32 1997 +0000 @@ -42,7 +42,8 @@ The default value is t. To change the default, do this: (set-default 'auto-show-mode nil) See also command `auto-show-mode'. -This variable has no effect when lines are not being truncated.") +This variable has no effect when lines are not being truncated. +This variable is automatically local in each buffer where it is set.") (make-variable-buffer-local 'auto-show-mode) @@ -63,7 +64,9 @@ ;;;###autoload (defun auto-show-mode (arg) "Turn automatic horizontal scroll mode on or off. -With arg, turn auto scrolling on if arg is positive, off otherwise." +With arg, turn auto scrolling on if arg is positive, off otherwise. +This mode is enabled or disabled for each buffer individually. +It takes effect only when `truncate-lines' is non-nil." (interactive "P") (setq auto-show-mode (if (null arg) @@ -74,7 +77,7 @@ "Scroll horizontally to make point visible, if that is enabled. This function only does something if `auto-show-mode' is non-nil and longlines are being truncated in the selected window. -See also the command `auto-show-toggle'." +See also the command `auto-show-mode'." (interactive) (if (and auto-show-mode (auto-show-truncationp) (equal (window-buffer) (current-buffer)))