diff options
| author | Richard M. Stallman | 1999-12-13 04:42:21 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1999-12-13 04:42:21 +0000 |
| commit | 390538c3a31aa831f830194fb422009d0fe2f8f4 (patch) | |
| tree | 08c958ea4eaa01fea07c460474b18e9ec8e7a4ff | |
| parent | f84db7d56a040a7e6bf21046d9a8970732eb71a1 (diff) | |
| download | emacs-390538c3a31aa831f830194fb422009d0fe2f8f4.tar.gz emacs-390538c3a31aa831f830194fb422009d0fe2f8f4.zip | |
*** empty log message ***
| -rw-r--r-- | lispref/anti.texi | 4 | ||||
| -rw-r--r-- | lispref/customize.texi | 7 |
2 files changed, 11 insertions, 0 deletions
diff --git a/lispref/anti.texi b/lispref/anti.texi index c2ffb4f2c73..0b8f4924216 100644 --- a/lispref/anti.texi +++ b/lispref/anti.texi | |||
| @@ -148,6 +148,10 @@ The function @code{assoc-delete-all} has itself been deleted. | |||
| 148 | So there! | 148 | So there! |
| 149 | 149 | ||
| 150 | @item | 150 | @item |
| 151 | The keyword @code{:set-after} no longer does anything in | ||
| 152 | @code{defcustom}. | ||
| 153 | |||
| 154 | @item | ||
| 151 | The variable @code{small-temporary-file-directory} has no special | 155 | The variable @code{small-temporary-file-directory} has no special |
| 152 | meaning. There's only one variable for specifying which directory to | 156 | meaning. There's only one variable for specifying which directory to |
| 153 | use for temporary files, @code{temporary-file-directory}, but not all | 157 | use for temporary files, @code{temporary-file-directory}, but not all |
diff --git a/lispref/customize.texi b/lispref/customize.texi index 555799c620d..d3bb0856404 100644 --- a/lispref/customize.texi +++ b/lispref/customize.texi | |||
| @@ -257,6 +257,13 @@ Use the @code{:set} function to initialize the variable, if it is | |||
| 257 | already set or has been customized; otherwise, just use | 257 | already set or has been customized; otherwise, just use |
| 258 | @code{set-default}. | 258 | @code{set-default}. |
| 259 | @end table | 259 | @end table |
| 260 | |||
| 261 | @item :set-after @var{variables} | ||
| 262 | When setting variables according to saved customizations, make sure to | ||
| 263 | set the variables @var{variables} before this one; in other words, delay | ||
| 264 | setting this variable until after those others have been handled. Use | ||
| 265 | @code{:set-after} if setting this variable won't work properly unless | ||
| 266 | those other variables already have their intended values. | ||
| 260 | @end table | 267 | @end table |
| 261 | 268 | ||
| 262 | The @code{:require} option is useful for an option that turns on the | 269 | The @code{:require} option is useful for an option that turns on the |