emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] emacs-26 05214c6: Correct variable markup in manuals


From: Eli Zaretskii
Subject: [Emacs-diffs] emacs-26 05214c6: Correct variable markup in manuals
Date: Tue, 20 Feb 2018 14:16:04 -0500 (EST)

branch: emacs-26
commit 05214c65a357657266e125c26ff382b4c2901dd2
Author: Robert Pluim <address@hidden>
Commit: Eli Zaretskii <address@hidden>

    Correct variable markup in manuals
    
    * doc/lispref/minibuf.texi (Completion in Buffers): Fix markup.
    * doc/lispref/text.texi (Filling): Likewise.
    * doc/misc/dired-x.texi (Advanced Mark Commands): Likewise.
    * doc/misc/epa.texi (Encrypting/decrypting gpg files): Likewise.
    (Encrypting/decrypting gpg files): Likewise.
    * doc/misc/tramp.texi (External methods): Likewise.
    (Default Method): Likewise.
    * doc/misc/viper.texi (Editing in Insert State): Likewise.
    (File and Buffer Handling): Likewise.
    * doc/misc/gnus.texi (Mail Source Customization): Likewise.
    * doc/misc/url.texi (Customization): Likewise.  Note obsolete
    status of url-temporary-directory.
---
 doc/lispref/minibuf.texi | 2 +-
 doc/lispref/text.texi    | 2 +-
 doc/misc/dired-x.texi    | 2 +-
 doc/misc/epa.texi        | 4 ++--
 doc/misc/gnus.texi       | 2 +-
 doc/misc/tramp.texi      | 4 ++--
 doc/misc/url.texi        | 5 +++--
 doc/misc/viper.texi      | 8 ++++----
 8 files changed, 15 insertions(+), 14 deletions(-)

diff --git a/doc/lispref/minibuf.texi b/doc/lispref/minibuf.texi
index c7f8ba9..0ef8185 100644
--- a/doc/lispref/minibuf.texi
+++ b/doc/lispref/minibuf.texi
@@ -1916,7 +1916,7 @@ may internally call functions in 
@code{completion-at-point-functions}
 many times, but care about the value of @var{collection} for only some
 of these calls.  By supplying a function for @var{collection}, Emacs
 can defer generating completions until necessary.  You can use
address@hidden to create a wrapper function:
address@hidden to create a wrapper function:
 
 @smallexample
 ;; Avoid this pattern.
diff --git a/doc/lispref/text.texi b/doc/lispref/text.texi
index f45b81c..426940b 100644
--- a/doc/lispref/text.texi
+++ b/doc/lispref/text.texi
@@ -1637,7 +1637,7 @@ This function returns the proper justification style to 
use for filling
 the text around point.
 
 This returns the value of the @code{justification} text property at
-point, or the variable @var{default-justification} if there is no such
+point, or the variable @code{default-justification} if there is no such
 text property.  However, it returns @code{nil} rather than @code{none}
 to mean ``don't justify''.
 @end defun
diff --git a/doc/misc/dired-x.texi b/doc/misc/dired-x.texi
index 8566c7c..8c61308 100644
--- a/doc/misc/dired-x.texi
+++ b/doc/misc/dired-x.texi
@@ -733,7 +733,7 @@ and an optional argument @var{marker-char} specifies the 
marker used.
 @findex dired-mark-suffix
 Mark all files with a certain suffix for use in later commands.  A @samp{.}
 is not automatically prepended to the string entered, you must type it
-explicitly.  This is different from @var{dired-mark-extension} which prepends
+explicitly.  This is different from @code{dired-mark-extension} which prepends
 a @samp{.} if not present.
 If invoked with prefix argument @kbd{C-u}, this command unmarks files instead.
 If called with the @kbd{C-u C-u} prefix, asks for a character to use
diff --git a/doc/misc/epa.texi b/doc/misc/epa.texi
index 8c21a26..237617a 100644
--- a/doc/misc/epa.texi
+++ b/doc/misc/epa.texi
@@ -363,7 +363,7 @@ Similarly, when you save the buffer to a @file{foo.gpg} 
file,
 encrypted data is written.
 
 The file name pattern for encrypted files can be controlled by
address@hidden
address@hidden
 
 @defvar epa-file-name-regexp
 Regexp which matches filenames treated as encrypted.
@@ -392,7 +392,7 @@ public key encryption.
 @end deffn
 
 You can also change the default behavior with the variable
address@hidden
address@hidden
 
 @defvar epa-file-select-keys
 Control whether or not to pop up the key selection dialog.
diff --git a/doc/misc/gnus.texi b/doc/misc/gnus.texi
index 1b941bc..a63b5a0 100644
--- a/doc/misc/gnus.texi
+++ b/doc/misc/gnus.texi
@@ -15174,7 +15174,7 @@ All new mail files will get this file mode.  The 
default is @code{#o600}.
 @item mail-source-movemail-program
 @vindex mail-source-movemail-program
 If address@hidden, name of program for fetching new mail.  If
address@hidden, @code{movemail} in @var{exec-directory}.
address@hidden, @code{movemail} in @code{exec-directory}.
 
 @end table
 
diff --git a/doc/misc/tramp.texi b/doc/misc/tramp.texi
index f82c9b5..c3beeb7 100644
--- a/doc/misc/tramp.texi
+++ b/doc/misc/tramp.texi
@@ -809,7 +809,7 @@ External methods save on the overhead of encoding and 
decoding of
 inline methods.
 
 Since external methods have the overhead of opening a new channel,
-files smaller than @var{tramp-copy-size-limit} still use inline
+files smaller than @code{tramp-copy-size-limit} still use inline
 methods.
 
 @table @asis
@@ -1201,7 +1201,7 @@ Start by using an inline method.
 External methods might be more efficient for large files, but most
 @value{tramp} users edit small files more often than large files.
 
-Enable compression, @var{tramp-inline-compress-start-size}, for a
+Enable compression, @code{tramp-inline-compress-start-size}, for a
 performance boost for large files.
 
 Since @command{ssh} has become the most common method of remote host
diff --git a/doc/misc/url.texi b/doc/misc/url.texi
index b665e6a..ed39aab 100644
--- a/doc/misc/url.texi
+++ b/doc/misc/url.texi
@@ -1271,8 +1271,9 @@ operation at startup.
 @item TMPDIR
 @vindex TMPDIR
 @vindex url-temporary-directory
-If this is defined, @var{url-temporary-directory} is initialized from
-it.
+If this is defined, @code{url-temporary-directory} is initialized from
+it.  This variable was obsoleted in 23.1, please use
address@hidden instead.
 @end table
 
   The following user options affect the general operation of
diff --git a/doc/misc/viper.texi b/doc/misc/viper.texi
index 1e6e08b..3432e57 100644
--- a/doc/misc/viper.texi
+++ b/doc/misc/viper.texi
@@ -3579,7 +3579,7 @@ Viper customization file.  @xref{Viper Specials}, for 
details.
 Minibuffer can be edited similarly to Insert state, and you can switch
 between Insert/Replace/Vi states at will.
 Some users prefer plain Emacs feel in the minibuffer.  To this end, set
address@hidden to @code{nil}.
address@hidden to @code{nil}.
 
 @cindex Insert state
 
@@ -4063,15 +4063,15 @@ Edit <count> file, or edit files.  The count comes from 
@kbd{:args}.
 Like @kbd{:n}, but the meaning of the variable
 @var{ex-cycle-other-window} is reversed.
 @item :b
-Switch to another buffer.  If @var{ex-cycle-other-window} is @code{t},
+Switch to another buffer.  If @code{ex-cycle-other-window} is @code{t},
 switch in another window.  Buffer completion is supported.
-The variable @var{viper-read-buffer-function} controls which function is
+The variable @code{viper-read-buffer-function} controls which function is
 actually used to read the buffer name. The default is @code{read-buffer},
 but better alternatives are also available in Emacs (e.g.,
 @code{ido-read-buffer}).
 @vindex @var{viper-read-buffer-function}
 @item :B
-Like @kbd{:b}, but the meaning of @var{ex-cycle-other-window} is reversed.
+Like @kbd{:b}, but the meaning of code{ex-cycle-other-window} is reversed.
 @item :<address>r <name>
 Read the file <name> into the buffer after the line <address>.
 @item v, V, C-v



reply via email to

[Prev in Thread] Current Thread [Next in Thread]