diff options
author | Chong Yidong <cyd@stupidchicken.com> | 2005-09-08 22:00:58 +0000 |
---|---|---|
committer | Chong Yidong <cyd@stupidchicken.com> | 2005-09-08 22:00:58 +0000 |
commit | 475aab0deb5eb47377335137afd190ece9fcd92c (patch) | |
tree | 54726842f6e88b23e989787355a917a6d66e4553 /lispref/hooks.texi | |
parent | 9815ca3d25923c59711abf757c6371bc3548b318 (diff) | |
download | emacs-475aab0deb5eb47377335137afd190ece9fcd92c.tar.gz emacs-475aab0deb5eb47377335137afd190ece9fcd92c.tar.bz2 emacs-475aab0deb5eb47377335137afd190ece9fcd92c.zip |
2005-09-08 Chong Yidong <cyd@stupidchicken.com>
* locals.texi (Standard Buffer-Local Variables): Don't include
mode variables for minor modes.
Fix xrefs for buffer-display-count, buffer-display-table,
buffer-offer-save, buffer-saved-size, cache-long-line-scans,
enable-multibyte-characters, fill-column, header-line-format,
left-fringe-width, left-margin, and right-fringe-width.
* hooks.texi (Standard Hooks): All hooks should conform to the
standard naming convention now.
Fix xref for `echo-area-clear-hook'.
* display.texi (Usual Display): Note that indicate-empty-lines and
tab-width are buffer-local.
* files.texi (Saving Buffers): Add xref to `Killing Buffers'.
* modes.texi (Mode Help): Note that major-mode is buffer-local.
* nonascii.texi (Encoding and I/O): Note that
buffer-file-coding-system is buffer-local.
* positions.texi (List Motion): Note that defun-prompt-regexp is
buffer-local.
* text.texi (Auto Filling): Note that auto-fill-function is
buffer-local.
(Undo): Note that buffer-undo-list is buffer-local.
* windows.texi (Buffers and Windows): Document
buffer-display-count.
Diffstat (limited to 'lispref/hooks.texi')
-rw-r--r-- | lispref/hooks.texi | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/lispref/hooks.texi b/lispref/hooks.texi index 11b2233dc0e..795048fdb25 100644 --- a/lispref/hooks.texi +++ b/lispref/hooks.texi @@ -26,14 +26,13 @@ are omitted in the list below. The variables whose names end in @samp{-hooks} or @samp{-functions} are usually @dfn{abnormal hooks}; their values are lists of functions, but these functions are called in a special way (they are passed arguments, -or their values are used). A few of these variables are actually normal -hooks which were named before we established the convention that normal -hooks' names should end in @samp{-hook}. +or their values are used). The variables whose names end in +@samp{-function} have single functions as their values. -The variables whose names end in @samp{-function} have single functions -as their values. (In older Emacs versions, some of these variables had -names ending in @samp{-hook} even though they were not normal hooks; -however, we have renamed all of those.) +(In older Emacs versions, some normal hooks had names ending in +@samp{-hooks} or @samp{-functions}, and some abnormal hooks had names +ending in @samp{-hook}. We have renamed all of these to conform to +the above conventions.) @c We need to xref to where each hook is documented or else document @c it here. @@ -135,7 +134,7 @@ for appointment notification. @xref{Disabling Commands}. @item echo-area-clear-hook -@xref{The Echo Area}. +@xref{Echo Area Customization}. @item emacs-startup-hook @xref{Init File}. |