aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorRichard M. Stallman1997-08-09 02:11:29 +0000
committerRichard M. Stallman1997-08-09 02:11:29 +0000
commit23d93b6a88c3afe2529261635b2edc54b34ef63c (patch)
tree3b5b858b2b945a4ed10eb4a5f70d89bb3f0a9e1f /lisp
parent6bf87eac50e7132eba85e379a06250c74a23644c (diff)
downloademacs-23d93b6a88c3afe2529261635b2edc54b34ef63c.tar.gz
emacs-23d93b6a88c3afe2529261635b2edc54b34ef63c.zip
Correct the autoload cookies.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/progmodes/hideshow.el8
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/progmodes/hideshow.el b/lisp/progmodes/hideshow.el
index 585930e21a7..1ea9c4e7a57 100644
--- a/lisp/progmodes/hideshow.el
+++ b/lisp/progmodes/hideshow.el
@@ -1,6 +1,6 @@
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,1995,1996,1997 Free Software Foundation 3;; Copyright (C) 1994, 1995, 1996, 1997 Free Software Foundation
4 4
5;; Author: Thien-Thi Nguyen <ttn@netcom.com> 5;; Author: Thien-Thi Nguyen <ttn@netcom.com>
6;; Maintainer: Dan Nicolaescu <done@ece.arizona.edu> 6;; Maintainer: Dan Nicolaescu <done@ece.arizona.edu>
@@ -75,13 +75,13 @@
75 :prefix "hs-" 75 :prefix "hs-"
76 :group 'languages) 76 :group 'languages)
77 77
78;;;#autoload 78;;;###autoload
79(defcustom hs-hide-comments-when-hiding-all t 79(defcustom hs-hide-comments-when-hiding-all t
80 "Hide the comments too when you do an `hs-hide-all'." 80 "Hide the comments too when you do an `hs-hide-all'."
81 :type 'boolean 81 :type 'boolean
82 :group 'hideshow) 82 :group 'hideshow)
83 83
84;;;#autoload 84;;;###autoload
85(defcustom hs-show-hidden-short-form t 85(defcustom hs-show-hidden-short-form t
86 "Leave only the first line visible in a hidden block. 86 "Leave only the first line visible in a hidden block.
87If t only the first line is visible when a block is in the hidden state, 87If t only the first line is visible when a block is in the hidden state,
@@ -155,7 +155,7 @@ This error is usually signaled by `hs-show-block'. One of four values:
155 155
156Values other than these four will be interpreted as `signal'.") 156Values other than these four will be interpreted as `signal'.")
157 157
158;;;#autoload 158;;;###autoload
159(defvar hs-special-modes-alist 159(defvar hs-special-modes-alist
160 '((c-mode "{" "}" nil nil hs-c-like-adjust-block-beginning) 160 '((c-mode "{" "}" nil nil hs-c-like-adjust-block-beginning)
161 (c++-mode "{" "}" "/[*/]" nil hs-c-like-adjust-block-beginning) 161 (c++-mode "{" "}" "/[*/]" nil hs-c-like-adjust-block-beginning)