1 ;;; auto-show.el --- perform automatic horizontal scrolling as point moves
2 ;;; This file is in the public domain.
4 ;; This file is part of GNU Emacs.
6 ;; Keywords: scroll display convenience
7 ;; Author: Pete Ware <ware@cis.ohio-state.edu>
12 ;; This file has been obsolete since Emacs 21.1.
14 ;; This file contains dummy variables and functions only because Emacs
15 ;; does hscrolling automatically, now.
19 (defgroup auto-show nil
20 "This customization group is kept for compatibility only.
21 Emacs now does hscrolling automatically. Please remove references
22 to auto-show from your init file and code."
26 (defcustom auto-show-mode nil
32 (defcustom auto-show-shift-amount
8
37 (defcustom auto-show-show-left-margin-threshold
50
43 (defun auto-show-mode (arg)
44 "This command is obsolete."
47 (defun auto-show-make-point-visible (&optional ignore-arg
)
48 "This command is obsolete."
53 ;; arch-tag: 49587cbf-95cc-4061-b564-274aaec37469
54 ;;; auto-show.el ends here