Show
Ignore:
Timestamp:
11/26/05 08:33:26 (3 years ago)
Author:
miyoshi
Message:

Sync up with Emacs CVS HEAD.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • vendor/emacs-CVS_HEAD/lisp/emacs-lisp/derived.el

    r3806 r3988  
    195195 
    196196    `(progn 
    197        (defvar ,hook nil ,(format "Hook run when entering %s mode." name)) 
     197       (unless (get  ',hook 'variable-documentation) 
     198         (put ',hook 'variable-documentation 
     199              ,(format "Hook run when entering %s mode. 
     200No problems result if this variable is not bound. 
     201`add-hook' automatically binds it.  (This is true for all hook variables.)" 
     202                       name))) 
    198203       (defvar ,map (make-sparse-keymap)) 
    199204       ,(if declare-syntax