diff options
| author | Glenn Morris | 2014-10-03 23:35:55 -0700 |
|---|---|---|
| committer | Glenn Morris | 2014-10-03 23:35:55 -0700 |
| commit | fc7db7066bc611ce95fc44492371dea6a8a3e5bd (patch) | |
| tree | fccabc881fc8dcc0e0590d0b2ef66bd76f3b4aa9 /doc/lispref | |
| parent | b7529d917a6552f91a08519e5c25a9807f58fd17 (diff) | |
| download | emacs-fc7db7066bc611ce95fc44492371dea6a8a3e5bd.tar.gz emacs-fc7db7066bc611ce95fc44492371dea6a8a3e5bd.zip | |
Small doc/ fixes re @var usage.
* doc/emacs/cmdargs.texi (Misc X):
* doc/emacs/display.texi (Optional Mode Line):
* doc/emacs/misc.texi (emacsclient Options):
* doc/emacs/vc1-xtra.texi (VC Delete/Rename):
* doc/lispref/buffers.texi (Buffer List):
* doc/lispref/display.texi (Image Descriptors, Defining Images):
* doc/lispref/functions.texi (Core Advising Primitives):
Small fixes re @var usage.
Diffstat (limited to 'doc/lispref')
| -rw-r--r-- | doc/lispref/ChangeLog | 4 | ||||
| -rw-r--r-- | doc/lispref/buffers.texi | 2 | ||||
| -rw-r--r-- | doc/lispref/display.texi | 4 | ||||
| -rw-r--r-- | doc/lispref/functions.texi | 2 |
4 files changed, 8 insertions, 4 deletions
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog index 93edec8d4fd..e481ea3314d 100644 --- a/doc/lispref/ChangeLog +++ b/doc/lispref/ChangeLog | |||
| @@ -1,5 +1,9 @@ | |||
| 1 | 2014-10-04 Glenn Morris <rgm@gnu.org> | 1 | 2014-10-04 Glenn Morris <rgm@gnu.org> |
| 2 | 2 | ||
| 3 | * buffers.texi (Buffer List): | ||
| 4 | * display.texi (Image Descriptors, Defining Images): | ||
| 5 | * functions.texi (Core Advising Primitives): Small fixes re @var usage. | ||
| 6 | |||
| 3 | * windows.texi (Window Sizes, Resizing Windows): Copyedits. | 7 | * windows.texi (Window Sizes, Resizing Windows): Copyedits. |
| 4 | 8 | ||
| 5 | * frames.texi (Multiple Terminals): Copyedits re multiple monitors. | 9 | * frames.texi (Multiple Terminals): Copyedits re multiple monitors. |
diff --git a/doc/lispref/buffers.texi b/doc/lispref/buffers.texi index 1293a03082c..5ac2d6786e8 100644 --- a/doc/lispref/buffers.texi +++ b/doc/lispref/buffers.texi | |||
| @@ -863,7 +863,7 @@ If no suitable buffer exists, the buffer @file{*scratch*} is returned | |||
| 863 | 863 | ||
| 864 | @defun last-buffer &optional buffer visible-ok frame | 864 | @defun last-buffer &optional buffer visible-ok frame |
| 865 | This function returns the last buffer in @var{frame}'s buffer list other | 865 | This function returns the last buffer in @var{frame}'s buffer list other |
| 866 | than @var{BUFFER}. If @var{frame} is omitted or @code{nil}, it uses the | 866 | than @var{buffer}. If @var{frame} is omitted or @code{nil}, it uses the |
| 867 | selected frame's buffer list. | 867 | selected frame's buffer list. |
| 868 | 868 | ||
| 869 | The argument @var{visible-ok} is handled as with @code{other-buffer}, | 869 | The argument @var{visible-ok} is handled as with @code{other-buffer}, |
diff --git a/doc/lispref/display.texi b/doc/lispref/display.texi index e88eadb5ca7..032d9129c88 100644 --- a/doc/lispref/display.texi +++ b/doc/lispref/display.texi | |||
| @@ -4503,7 +4503,7 @@ functions to insert images into buffers. | |||
| 4503 | 4503 | ||
| 4504 | Each image descriptor has the form @code{(image . @var{props})}, | 4504 | Each image descriptor has the form @code{(image . @var{props})}, |
| 4505 | where @var{props} is a property list of alternating keyword symbols | 4505 | where @var{props} is a property list of alternating keyword symbols |
| 4506 | and values, including at least the pair @code{:type @var{TYPE}} which | 4506 | and values, including at least the pair @code{:type @var{type}} that |
| 4507 | specifies the image type. | 4507 | specifies the image type. |
| 4508 | 4508 | ||
| 4509 | The following is a list of properties that are meaningful for all | 4509 | The following is a list of properties that are meaningful for all |
| @@ -4995,7 +4995,7 @@ of a list of image specifications @var{specs}. | |||
| 4995 | Each specification in @var{specs} is a property list with contents | 4995 | Each specification in @var{specs} is a property list with contents |
| 4996 | depending on image type. All specifications must at least contain the | 4996 | depending on image type. All specifications must at least contain the |
| 4997 | properties @code{:type @var{type}} and either @w{@code{:file @var{file}}} | 4997 | properties @code{:type @var{type}} and either @w{@code{:file @var{file}}} |
| 4998 | or @w{@code{:data @var{DATA}}}, where @var{type} is a symbol specifying | 4998 | or @w{@code{:data @var{data}}}, where @var{type} is a symbol specifying |
| 4999 | the image type, e.g., @code{xbm}, @var{file} is the file to load the | 4999 | the image type, e.g., @code{xbm}, @var{file} is the file to load the |
| 5000 | image from, and @var{data} is a string containing the actual image data. | 5000 | image from, and @var{data} is a string containing the actual image data. |
| 5001 | The first specification in the list whose @var{type} is supported, and | 5001 | The first specification in the list whose @var{type} is supported, and |
diff --git a/doc/lispref/functions.texi b/doc/lispref/functions.texi index a5e81547d9a..f551a6c749d 100644 --- a/doc/lispref/functions.texi +++ b/doc/lispref/functions.texi | |||
| @@ -1232,7 +1232,7 @@ global value of @var{place}. Whereas if @var{place} is of the form | |||
| 1232 | @code{(local @var{symbol})}, where @var{symbol} is an expression which returns | 1232 | @code{(local @var{symbol})}, where @var{symbol} is an expression which returns |
| 1233 | the variable name, then @var{function} will only be added in the | 1233 | the variable name, then @var{function} will only be added in the |
| 1234 | current buffer. Finally, if you want to modify a lexical variable, you will | 1234 | current buffer. Finally, if you want to modify a lexical variable, you will |
| 1235 | have to use @code{(var @var{VARIABLE})}. | 1235 | have to use @code{(var @var{variable})}. |
| 1236 | 1236 | ||
| 1237 | Every function added with @code{add-function} can be accompanied by an | 1237 | Every function added with @code{add-function} can be accompanied by an |
| 1238 | association list of properties @var{props}. Currently only two of those | 1238 | association list of properties @var{props}. Currently only two of those |