Mercurial > emacs
annotate lisp/obsolete/auto-show.el @ 94139:1e40bf35d15e
(python-mode-map): Use abbrev-table-menu.
(python-use-skeletons): Remove, unused.
(python-skeletons): Remove. Use the abbrev table instead.
(python-mode-abbrev-table): Fix regexp; add enable-function and case-fixed.
(def-python-skeleton): Simplify.
(python-expand-template): Use the abbrev-table and abbrev-insert.
(python-abbrev-pc-hook, python-abbrev-syntax-table, python-pea-hook): Remove.
(python-mode): Don't set pre-abbrev-expand-hook.
author | Stefan Monnier <monnier@iro.umontreal.ca> |
---|---|
date | Thu, 17 Apr 2008 20:09:54 +0000 |
parents | ee22366f2a68 |
children |
rev | line source |
---|---|
34457
349d4061ceb4
Moved from auto-show.el to obsolete/auto-show.el
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
diff
changeset
|
1 ;;; auto-show.el --- perform automatic horizontal scrolling as point moves |
349d4061ceb4
Moved from auto-show.el to obsolete/auto-show.el
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
diff
changeset
|
2 ;;; This file is in the public domain. |
349d4061ceb4
Moved from auto-show.el to obsolete/auto-show.el
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
diff
changeset
|
3 |
38412
253f761ad37b
Some fixes to follow coding conventions in files maintained by FSF.
Pavel Janík <Pavel@Janik.cz>
parents:
34457
diff
changeset
|
4 ;; This file is part of GNU Emacs. |
253f761ad37b
Some fixes to follow coding conventions in files maintained by FSF.
Pavel Janík <Pavel@Janik.cz>
parents:
34457
diff
changeset
|
5 |
253f761ad37b
Some fixes to follow coding conventions in files maintained by FSF.
Pavel Janík <Pavel@Janik.cz>
parents:
34457
diff
changeset
|
6 ;; Keywords: scroll display convenience |
253f761ad37b
Some fixes to follow coding conventions in files maintained by FSF.
Pavel Janík <Pavel@Janik.cz>
parents:
34457
diff
changeset
|
7 ;; Author: Pete Ware <ware@cis.ohio-state.edu> |
253f761ad37b
Some fixes to follow coding conventions in files maintained by FSF.
Pavel Janík <Pavel@Janik.cz>
parents:
34457
diff
changeset
|
8 ;; Maintainer: FSF |
34457
349d4061ceb4
Moved from auto-show.el to obsolete/auto-show.el
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
diff
changeset
|
9 |
349d4061ceb4
Moved from auto-show.el to obsolete/auto-show.el
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
diff
changeset
|
10 ;;; Commentary: |
349d4061ceb4
Moved from auto-show.el to obsolete/auto-show.el
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
diff
changeset
|
11 |
94000
ee22366f2a68
Add a comment giving version of obsolescence.
Glenn Morris <rgm@gnu.org>
parents:
93975
diff
changeset
|
12 ;; This file has been obsolete since Emacs 21.1. |
ee22366f2a68
Add a comment giving version of obsolescence.
Glenn Morris <rgm@gnu.org>
parents:
93975
diff
changeset
|
13 |
34457
349d4061ceb4
Moved from auto-show.el to obsolete/auto-show.el
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
diff
changeset
|
14 ;; This file contains dummy variables and functions only because Emacs |
349d4061ceb4
Moved from auto-show.el to obsolete/auto-show.el
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
diff
changeset
|
15 ;; does hscrolling automatically, now. |
349d4061ceb4
Moved from auto-show.el to obsolete/auto-show.el
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
diff
changeset
|
16 |
349d4061ceb4
Moved from auto-show.el to obsolete/auto-show.el
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
diff
changeset
|
17 ;;; Code: |
349d4061ceb4
Moved from auto-show.el to obsolete/auto-show.el
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
diff
changeset
|
18 |
349d4061ceb4
Moved from auto-show.el to obsolete/auto-show.el
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
diff
changeset
|
19 (defgroup auto-show nil |
349d4061ceb4
Moved from auto-show.el to obsolete/auto-show.el
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
diff
changeset
|
20 "This customization group is kept for compatibility only. |
349d4061ceb4
Moved from auto-show.el to obsolete/auto-show.el
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
diff
changeset
|
21 Emacs now does hscrolling automatically. Please remove references |
349d4061ceb4
Moved from auto-show.el to obsolete/auto-show.el
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
diff
changeset
|
22 to auto-show from your init file and code." |
349d4061ceb4
Moved from auto-show.el to obsolete/auto-show.el
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
diff
changeset
|
23 :group 'editing) |
349d4061ceb4
Moved from auto-show.el to obsolete/auto-show.el
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
diff
changeset
|
24 |
349d4061ceb4
Moved from auto-show.el to obsolete/auto-show.el
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
diff
changeset
|
25 ;;;###autoload |
349d4061ceb4
Moved from auto-show.el to obsolete/auto-show.el
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
diff
changeset
|
26 (defcustom auto-show-mode nil |
349d4061ceb4
Moved from auto-show.el to obsolete/auto-show.el
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
diff
changeset
|
27 "Obsolete." |
349d4061ceb4
Moved from auto-show.el to obsolete/auto-show.el
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
diff
changeset
|
28 :version "20.4" |
349d4061ceb4
Moved from auto-show.el to obsolete/auto-show.el
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
diff
changeset
|
29 :type 'boolean |
349d4061ceb4
Moved from auto-show.el to obsolete/auto-show.el
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
diff
changeset
|
30 :group 'auto-show) |
349d4061ceb4
Moved from auto-show.el to obsolete/auto-show.el
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
diff
changeset
|
31 |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
38412
diff
changeset
|
32 (defcustom auto-show-shift-amount 8 |
34457
349d4061ceb4
Moved from auto-show.el to obsolete/auto-show.el
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
diff
changeset
|
33 "*Obsolete." |
349d4061ceb4
Moved from auto-show.el to obsolete/auto-show.el
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
diff
changeset
|
34 :type 'integer |
349d4061ceb4
Moved from auto-show.el to obsolete/auto-show.el
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
diff
changeset
|
35 :group 'auto-show) |
349d4061ceb4
Moved from auto-show.el to obsolete/auto-show.el
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
diff
changeset
|
36 |
349d4061ceb4
Moved from auto-show.el to obsolete/auto-show.el
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
diff
changeset
|
37 (defcustom auto-show-show-left-margin-threshold 50 |
349d4061ceb4
Moved from auto-show.el to obsolete/auto-show.el
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
diff
changeset
|
38 "*Obsolete." |
349d4061ceb4
Moved from auto-show.el to obsolete/auto-show.el
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
diff
changeset
|
39 :type 'integer |
349d4061ceb4
Moved from auto-show.el to obsolete/auto-show.el
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
diff
changeset
|
40 :group 'auto-show) |
349d4061ceb4
Moved from auto-show.el to obsolete/auto-show.el
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
diff
changeset
|
41 |
349d4061ceb4
Moved from auto-show.el to obsolete/auto-show.el
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
diff
changeset
|
42 ;;;###autoload |
349d4061ceb4
Moved from auto-show.el to obsolete/auto-show.el
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
diff
changeset
|
43 (defun auto-show-mode (arg) |
349d4061ceb4
Moved from auto-show.el to obsolete/auto-show.el
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
diff
changeset
|
44 "This command is obsolete." |
349d4061ceb4
Moved from auto-show.el to obsolete/auto-show.el
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
diff
changeset
|
45 (interactive "P")) |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
38412
diff
changeset
|
46 |
34457
349d4061ceb4
Moved from auto-show.el to obsolete/auto-show.el
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
diff
changeset
|
47 (defun auto-show-make-point-visible (&optional ignore-arg) |
349d4061ceb4
Moved from auto-show.el to obsolete/auto-show.el
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
diff
changeset
|
48 "This command is obsolete." |
349d4061ceb4
Moved from auto-show.el to obsolete/auto-show.el
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
diff
changeset
|
49 (interactive)) |
349d4061ceb4
Moved from auto-show.el to obsolete/auto-show.el
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
diff
changeset
|
50 |
349d4061ceb4
Moved from auto-show.el to obsolete/auto-show.el
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
diff
changeset
|
51 (provide 'auto-show) |
349d4061ceb4
Moved from auto-show.el to obsolete/auto-show.el
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
diff
changeset
|
52 |
93975
1e3a407766b9
Fix up comment convention on the arch-tag lines.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
53 ;; arch-tag: 49587cbf-95cc-4061-b564-274aaec37469 |
38412
253f761ad37b
Some fixes to follow coding conventions in files maintained by FSF.
Pavel Janík <Pavel@Janik.cz>
parents:
34457
diff
changeset
|
54 ;;; auto-show.el ends here |