diff options
| author | Thien-Thi Nguyen | 2001-03-13 23:34:21 +0000 |
|---|---|---|
| committer | Thien-Thi Nguyen | 2001-03-13 23:34:21 +0000 |
| commit | 60470e65678ee0649c92ddd61d2c6053d59b96a7 (patch) | |
| tree | 162f2c89584168fa07fb085e8964ad67885c61e4 | |
| parent | 19b2bb80a3b5f078bcb04c314db892d34f25781e (diff) | |
| download | emacs-60470e65678ee0649c92ddd61d2c6053d59b96a7.tar.gz emacs-60470e65678ee0649c92ddd61d2c6053d59b96a7.zip | |
Update copyright.
(hs-minor-mode-map): Change bindings to use `C-c @' prefix.
| -rw-r--r-- | lisp/progmodes/hideshow.el | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/lisp/progmodes/hideshow.el b/lisp/progmodes/hideshow.el index f47e5cd7a74..08d5a725310 100644 --- a/lisp/progmodes/hideshow.el +++ b/lisp/progmodes/hideshow.el | |||
| @@ -1,11 +1,11 @@ | |||
| 1 | ;;; hideshow.el --- minor mode cmds to selectively display blocks of code | 1 | ;;; hideshow.el --- minor mode cmds to selectively display blocks of code |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 1994, 95, 96, 97, 98, 99, 2000 Free Software Foundation | 3 | ;; Copyright (C) 1994, 95, 96, 97, 98, 99, 2000, 01 Free Software Foundation |
| 4 | 4 | ||
| 5 | ;; Author: Thien-Thi Nguyen <ttn@gnu.org> | 5 | ;; Author: Thien-Thi Nguyen <ttn@gnu.org> |
| 6 | ;; Dan Nicolaescu <dann@ics.uci.edu> | 6 | ;; Dan Nicolaescu <dann@ics.uci.edu> |
| 7 | ;; Keywords: C C++ java lisp tools editing comments blocks hiding outlines | 7 | ;; Keywords: C C++ java lisp tools editing comments blocks hiding outlines |
| 8 | ;; Maintainer-Version: 5.22 | 8 | ;; Maintainer-Version: 5.26 |
| 9 | ;; Time-of-Day-Author-Most-Likely-to-be-Recalcitrant: early morning | 9 | ;; Time-of-Day-Author-Most-Likely-to-be-Recalcitrant: early morning |
| 10 | 10 | ||
| 11 | ;; This file is part of GNU Emacs. | 11 | ;; This file is part of GNU Emacs. |
| @@ -33,12 +33,12 @@ | |||
| 33 | ;; are available, implementing block hiding and showing. They (and their | 33 | ;; are available, implementing block hiding and showing. They (and their |
| 34 | ;; keybindings) are: | 34 | ;; keybindings) are: |
| 35 | ;; | 35 | ;; |
| 36 | ;; hs-hide-block C-c C-h | 36 | ;; hs-hide-block C-c @ C-h |
| 37 | ;; hs-show-block C-c C-s | 37 | ;; hs-show-block C-c @ C-s |
| 38 | ;; hs-hide-all C-c C-M-h | 38 | ;; hs-hide-all C-c @ C-M-h |
| 39 | ;; hs-show-all C-c C-M-s | 39 | ;; hs-show-all C-c @ C-M-s |
| 40 | ;; hs-hide-level C-c C-l | 40 | ;; hs-hide-level C-c @ C-l |
| 41 | ;; hs-toggle-hiding C-c C-c | 41 | ;; hs-toggle-hiding C-c @ C-c |
| 42 | ;; hs-mouse-toggle-hiding [(shift button-2)] | 42 | ;; hs-mouse-toggle-hiding [(shift button-2)] |
| 43 | ;; hs-hide-initial-comment-block | 43 | ;; hs-hide-initial-comment-block |
| 44 | ;; | 44 | ;; |
| @@ -862,12 +862,12 @@ Key bindings: | |||
| 862 | (if (aref ent 0) ent "-----")) | 862 | (if (aref ent 0) ent "-----")) |
| 863 | ;; These bindings roughly imitate those used by Outline mode. | 863 | ;; These bindings roughly imitate those used by Outline mode. |
| 864 | ;; menu entry command key | 864 | ;; menu entry command key |
| 865 | '(["Hide Block" hs-hide-block "\C-c\C-h"] | 865 | '(["Hide Block" hs-hide-block "\C-c@\C-h"] |
| 866 | ["Show Block" hs-show-block "\C-c\C-s"] | 866 | ["Show Block" hs-show-block "\C-c@\C-s"] |
| 867 | ["Hide All" hs-hide-all "\C-c\C-\M-h"] | 867 | ["Hide All" hs-hide-all "\C-c@\C-\M-h"] |
| 868 | ["Show All" hs-show-all "\C-c\C-\M-s"] | 868 | ["Show All" hs-show-all "\C-c@\C-\M-s"] |
| 869 | ["Hide Level" hs-hide-level "\C-c\C-l"] | 869 | ["Hide Level" hs-hide-level "\C-c@\C-l"] |
| 870 | ["Toggle Hiding" hs-toggle-hiding "\C-c\C-c"] | 870 | ["Toggle Hiding" hs-toggle-hiding "\C-c@\C-c"] |
| 871 | [nil hs-mouse-toggle-hiding [(shift button2)]] | 871 | [nil hs-mouse-toggle-hiding [(shift button2)]] |
| 872 | ))))) | 872 | ))))) |
| 873 | 873 | ||