1 ;;; auto-show.el --- perform automatic horizontal scrolling as point moves
2 ;;; This file is in the public domain.
4 ;;; Keywords: scroll display convenience
5 ;;; Author: Pete Ware <ware@cis.ohio-state.edu>
10 ;; This file contains dummy variables and functions only because Emacs
11 ;; does hscrolling automatically, now.
15 (defgroup auto-show nil
16 "This customization group is kept for compatibility only.
17 Emacs now does hscrolling automatically. Please remove references
18 to auto-show from your init file and code."
22 (defcustom auto-show-mode nil
28 (defcustom auto-show-shift-amount
8
33 (defcustom auto-show-show-left-margin-threshold
50
39 (defun auto-show-mode (arg)
40 "This command is obsolete."
43 (defun auto-show-make-point-visible (&optional ignore-arg
)
44 "This command is obsolete."
49 ;; auto-show.el ends here