(calendar-chinese-all-holidays-flag): New.
[emacs.git] / lisp / obsolete / auto-show.el
blob2fc3d25feefb25a6ddd10d59182702fa83b62810
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>
8 ;; Maintainer: FSF
10 ;;; Commentary:
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.
17 ;;; Code:
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."
23 :group 'editing)
25 ;;;###autoload
26 (defcustom auto-show-mode nil
27 "Obsolete."
28 :version "20.4"
29 :type 'boolean
30 :group 'auto-show)
32 (defcustom auto-show-shift-amount 8
33 "*Obsolete."
34 :type 'integer
35 :group 'auto-show)
37 (defcustom auto-show-show-left-margin-threshold 50
38 "*Obsolete."
39 :type 'integer
40 :group 'auto-show)
42 ;;;###autoload
43 (defun auto-show-mode (arg)
44 "This command is obsolete."
45 (interactive "P"))
47 (defun auto-show-make-point-visible (&optional ignore-arg)
48 "This command is obsolete."
49 (interactive))
51 (provide 'auto-show)
53 ;; arch-tag: 49587cbf-95cc-4061-b564-274aaec37469
54 ;;; auto-show.el ends here