aboutsummaryrefslogtreecommitdiffstats
path: root/doc/lispref
diff options
context:
space:
mode:
authorGlenn Morris2014-10-03 23:35:55 -0700
committerGlenn Morris2014-10-03 23:35:55 -0700
commitfc7db7066bc611ce95fc44492371dea6a8a3e5bd (patch)
treefccabc881fc8dcc0e0590d0b2ef66bd76f3b4aa9 /doc/lispref
parentb7529d917a6552f91a08519e5c25a9807f58fd17 (diff)
downloademacs-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/ChangeLog4
-rw-r--r--doc/lispref/buffers.texi2
-rw-r--r--doc/lispref/display.texi4
-rw-r--r--doc/lispref/functions.texi2
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 @@
12014-10-04 Glenn Morris <rgm@gnu.org> 12014-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
865This function returns the last buffer in @var{frame}'s buffer list other 865This function returns the last buffer in @var{frame}'s buffer list other
866than @var{BUFFER}. If @var{frame} is omitted or @code{nil}, it uses the 866than @var{buffer}. If @var{frame} is omitted or @code{nil}, it uses the
867selected frame's buffer list. 867selected frame's buffer list.
868 868
869The argument @var{visible-ok} is handled as with @code{other-buffer}, 869The 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})},
4505where @var{props} is a property list of alternating keyword symbols 4505where @var{props} is a property list of alternating keyword symbols
4506and values, including at least the pair @code{:type @var{TYPE}} which 4506and values, including at least the pair @code{:type @var{type}} that
4507specifies the image type. 4507specifies 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}.
4995Each specification in @var{specs} is a property list with contents 4995Each specification in @var{specs} is a property list with contents
4996depending on image type. All specifications must at least contain the 4996depending on image type. All specifications must at least contain the
4997properties @code{:type @var{type}} and either @w{@code{:file @var{file}}} 4997properties @code{:type @var{type}} and either @w{@code{:file @var{file}}}
4998or @w{@code{:data @var{DATA}}}, where @var{type} is a symbol specifying 4998or @w{@code{:data @var{data}}}, where @var{type} is a symbol specifying
4999the image type, e.g., @code{xbm}, @var{file} is the file to load the 4999the image type, e.g., @code{xbm}, @var{file} is the file to load the
5000image from, and @var{data} is a string containing the actual image data. 5000image from, and @var{data} is a string containing the actual image data.
5001The first specification in the list whose @var{type} is supported, and 5001The 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
1233the variable name, then @var{function} will only be added in the 1233the variable name, then @var{function} will only be added in the
1234current buffer. Finally, if you want to modify a lexical variable, you will 1234current buffer. Finally, if you want to modify a lexical variable, you will
1235have to use @code{(var @var{VARIABLE})}. 1235have to use @code{(var @var{variable})}.
1236 1236
1237Every function added with @code{add-function} can be accompanied by an 1237Every function added with @code{add-function} can be accompanied by an
1238association list of properties @var{props}. Currently only two of those 1238association list of properties @var{props}. Currently only two of those