diff options
| author | Kai Großjohann | 2000-10-17 22:20:22 +0000 |
|---|---|---|
| committer | Kai Großjohann | 2000-10-17 22:20:22 +0000 |
| commit | 916a89db452a2a3898f6732bbbb7b2885f07270b (patch) | |
| tree | 845e71be9ed594b9a2438bbb020429565659d513 | |
| parent | 1f0b3fd2075fbb68e9fde05c350c06b787cf20e3 (diff) | |
| download | emacs-916a89db452a2a3898f6732bbbb7b2885f07270b.tar.gz emacs-916a89db452a2a3898f6732bbbb7b2885f07270b.zip | |
Obsolete variable `after-make-frame-hook'.
| -rw-r--r-- | lispref/ChangeLog | 9 | ||||
| -rw-r--r-- | lispref/frames.texi | 2 | ||||
| -rw-r--r-- | lispref/variables.texi | 2 |
3 files changed, 11 insertions, 2 deletions
diff --git a/lispref/ChangeLog b/lispref/ChangeLog index 7d09a366ff4..8f4f76774f9 100644 --- a/lispref/ChangeLog +++ b/lispref/ChangeLog | |||
| @@ -1,3 +1,12 @@ | |||
| 1 | 2000-10-18 Kai Grossjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE> | ||
| 2 | |||
| 3 | * hooks.texi (Standard Hooks): replace obsolete | ||
| 4 | `after-make-frame-hook' with `after-make-frame-functions'. | ||
| 5 | |||
| 6 | * frames.texi (Creating Frames): dito. | ||
| 7 | |||
| 8 | * variables.texi (Future Local Variables): dito. | ||
| 9 | |||
| 1 | 2000-10-16 Gerd Moellmann <gerd@gnu.org> | 10 | 2000-10-16 Gerd Moellmann <gerd@gnu.org> |
| 2 | 11 | ||
| 3 | * display.texi (Other Image Types): Add description of :foreground | 12 | * display.texi (Other Image Types): Add description of :foreground |
diff --git a/lispref/frames.texi b/lispref/frames.texi index 2da21e859a6..bee010329bc 100644 --- a/lispref/frames.texi +++ b/lispref/frames.texi | |||
| @@ -101,7 +101,7 @@ frame. | |||
| 101 | @defvar after-make-frame-functions | 101 | @defvar after-make-frame-functions |
| 102 | @tindex after-make-frame-functions | 102 | @tindex after-make-frame-functions |
| 103 | An abnormal hook run by @code{make-frame} after it creates the frame. | 103 | An abnormal hook run by @code{make-frame} after it creates the frame. |
| 104 | Each function in @code{after-make-frame-hook} receives one argument, the | 104 | Each function in @code{after-make-frame-functions} receives one argument, the |
| 105 | frame just created. | 105 | frame just created. |
| 106 | @end defvar | 106 | @end defvar |
| 107 | 107 | ||
diff --git a/lispref/variables.texi b/lispref/variables.texi index 37528cc69af..2507706f618 100644 --- a/lispref/variables.texi +++ b/lispref/variables.texi | |||
| @@ -1641,7 +1641,7 @@ the variable changes that binding. You can observe the result with | |||
| 1641 | of frames---for example, all color frames, or all frames with dark | 1641 | of frames---for example, all color frames, or all frames with dark |
| 1642 | backgrounds. We have not implemented them because it is not clear that | 1642 | backgrounds. We have not implemented them because it is not clear that |
| 1643 | this feature is really useful. You can get more or less the same | 1643 | this feature is really useful. You can get more or less the same |
| 1644 | results by adding a function to @code{after-make-frame-hook}, set up to | 1644 | results by adding a function to @code{after-make-frame-functions}, set up to |
| 1645 | define a particular frame parameter according to the appropriate | 1645 | define a particular frame parameter according to the appropriate |
| 1646 | conditions for each frame. | 1646 | conditions for each frame. |
| 1647 | 1647 | ||