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 contains dummy variables and functions only because Emacs
13 ;; does hscrolling automatically, now.
17 (defgroup auto-show nil
18 "This customization group is kept for compatibility only.
19 Emacs now does hscrolling automatically. Please remove references
20 to auto-show from your init file and code."
24 (defcustom auto-show-mode nil
30 (defcustom auto-show-shift-amount
8
35 (defcustom auto-show-show-left-margin-threshold
50
41 (defun auto-show-mode (arg)
42 "This command is obsolete."
45 (defun auto-show-make-point-visible (&optional ignore-arg
)
46 "This command is obsolete."
51 ;;; auto-show.el ends here