aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--doc/emacs/ChangeLog5
-rw-r--r--doc/emacs/cmdargs.texi4
-rw-r--r--doc/emacs/display.texi4
-rw-r--r--doc/emacs/misc.texi4
-rw-r--r--doc/emacs/vc1-xtra.texi2
-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
9 files changed, 20 insertions, 11 deletions
diff --git a/doc/emacs/ChangeLog b/doc/emacs/ChangeLog
index c0bd8979631..a712d26fa28 100644
--- a/doc/emacs/ChangeLog
+++ b/doc/emacs/ChangeLog
@@ -1,5 +1,10 @@
12014-10-04 Glenn Morris <rgm@gnu.org> 12014-10-04 Glenn Morris <rgm@gnu.org>
2 2
3 * cmdargs.texi (Misc X):
4 * display.texi (Optional Mode Line):
5 * misc.texi (emacsclient Options):
6 * vc1-xtra.texi (VC Delete/Rename): Small fixes re @var usage.
7
3 * killing.texi (Rectangles): Copyedits re rectangle-mark-mode. 8 * killing.texi (Rectangles): Copyedits re rectangle-mark-mode.
4 (CUA Bindings): Mention rectangle-mark-mode. 9 (CUA Bindings): Mention rectangle-mark-mode.
5 10
diff --git a/doc/emacs/cmdargs.texi b/doc/emacs/cmdargs.texi
index 3443f0b1627..b438281b2a2 100644
--- a/doc/emacs/cmdargs.texi
+++ b/doc/emacs/cmdargs.texi
@@ -1106,8 +1106,8 @@ rectangle containing the frame's title.
1106@c Enable horizontal scroll bars. Since horizontal scroll bars 1106@c Enable horizontal scroll bars. Since horizontal scroll bars
1107@c are not yet implemented, this actually does nothing. 1107@c are not yet implemented, this actually does nothing.
1108 1108
1109@item --parent-id @var{ID} 1109@item --parent-id @var{id}
1110Open Emacs as a client X window via the XEmbed protocol, with @var{ID} 1110Open Emacs as a client X window via the XEmbed protocol, with @var{id}
1111as the parent X window id. Currently, this option is mainly useful 1111as the parent X window id. Currently, this option is mainly useful
1112for developers. 1112for developers.
1113 1113
diff --git a/doc/emacs/display.texi b/doc/emacs/display.texi
index bdcb185a5f3..0a77e722d32 100644
--- a/doc/emacs/display.texi
+++ b/doc/emacs/display.texi
@@ -1245,11 +1245,11 @@ Size Indication mode. The size will be displayed immediately
1245following the buffer percentage like this: 1245following the buffer percentage like this:
1246 1246
1247@example 1247@example
1248@var{POS} of @var{SIZE} 1248@var{pos} of @var{size}
1249@end example 1249@end example
1250 1250
1251@noindent 1251@noindent
1252Here @var{SIZE} is the human readable representation of the number of 1252Here @var{size} is the human readable representation of the number of
1253characters in the buffer, which means that @samp{k} for 10^3, @samp{M} 1253characters in the buffer, which means that @samp{k} for 10^3, @samp{M}
1254for 10^6, @samp{G} for 10^9, etc., are used to abbreviate. 1254for 10^6, @samp{G} for 10^9, etc., are used to abbreviate.
1255 1255
diff --git a/doc/emacs/misc.texi b/doc/emacs/misc.texi
index f09f23e6a4b..09e606fe2fe 100644
--- a/doc/emacs/misc.texi
+++ b/doc/emacs/misc.texi
@@ -1610,9 +1610,9 @@ all server buffers are finished. You can take as long as you like to
1610edit the server buffers within Emacs, and they are @emph{not} killed 1610edit the server buffers within Emacs, and they are @emph{not} killed
1611when you type @kbd{C-x #} in them. 1611when you type @kbd{C-x #} in them.
1612 1612
1613@item --parent-id @var{ID} 1613@item --parent-id @var{id}
1614Open an @command{emacsclient} frame as a client frame in the parent X 1614Open an @command{emacsclient} frame as a client frame in the parent X
1615window with id @var{ID}, via the XEmbed protocol. Currently, this 1615window with id @var{id}, via the XEmbed protocol. Currently, this
1616option is mainly useful for developers. 1616option is mainly useful for developers.
1617 1617
1618@item -q 1618@item -q
diff --git a/doc/emacs/vc1-xtra.texi b/doc/emacs/vc1-xtra.texi
index 07f956c488d..dd52d97780d 100644
--- a/doc/emacs/vc1-xtra.texi
+++ b/doc/emacs/vc1-xtra.texi
@@ -113,7 +113,7 @@ Prompt for a file name, delete the file from the working tree, and
113schedule the deletion for committing. 113schedule the deletion for committing.
114 114
115@item M-x vc-rename-file 115@item M-x vc-rename-file
116Prompt for two file names, @var{VAR} and @var{OLD}, rename them in the 116Prompt for two file names, @var{var} and @var{old}, rename them in the
117working tree, and schedule the renaming for committing. 117working tree, and schedule the renaming for committing.
118@end table 118@end table
119 119
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