aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorPaul Eggert2015-04-07 11:58:47 -0700
committerPaul Eggert2015-04-07 11:59:22 -0700
commit3262e4906781d9df343f335d64da92861c53e5a4 (patch)
tree269027748680ff4a3738953f6b27cc42902caf11 /doc
parentd60dbd81bec6dcb6b78200e07021b9a6ebf861ea (diff)
downloademacs-3262e4906781d9df343f335d64da92861c53e5a4.tar.gz
emacs-3262e4906781d9df343f335d64da92861c53e5a4.zip
Prefer double-quote to accent-grave in man pages
Diffstat (limited to 'doc')
-rw-r--r--doc/man/ebrowse.12
-rw-r--r--doc/man/emacs.1.in14
-rw-r--r--doc/man/emacsclient.132
-rw-r--r--doc/man/etags.110
4 files changed, 30 insertions, 28 deletions
diff --git a/doc/man/ebrowse.1 b/doc/man/ebrowse.1
index a4f0c790be5..40c82a46482 100644
--- a/doc/man/ebrowse.1
+++ b/doc/man/ebrowse.1
@@ -16,7 +16,7 @@ is used to create the database used by the class browser in Emacs.
16.PP 16.PP
17.SH OPTIONS 17.SH OPTIONS
18The program follows the usual GNU command line syntax, with long 18The program follows the usual GNU command line syntax, with long
19options starting with two dashes (`-'). 19options starting with two dashes ("\-").
20.TP 20.TP
21.B \-a, \-\-append 21.B \-a, \-\-append
22append output to existing file 22append output to existing file
diff --git a/doc/man/emacs.1.in b/doc/man/emacs.1.in
index 259acb9bba8..98322aac810 100644
--- a/doc/man/emacs.1.in
+++ b/doc/man/emacs.1.in
@@ -251,8 +251,8 @@ Set additional X resources.
251.BI "\-\-color\fR,\fP \-\-color=" mode 251.BI "\-\-color\fR,\fP \-\-color=" mode
252Override color mode for character terminals; 252Override color mode for character terminals;
253.I mode 253.I mode
254defaults to `auto', and can also be `never', `auto', `always', 254defaults to "auto", and can also be "never", "auto", "always",
255or a mode name like `ansi8'. 255or a mode name like "ansi8".
256.TP 256.TP
257.BI \-bw " pixels\fR,\fP " \-\-border\-width " pixels" 257.BI \-bw " pixels\fR,\fP " \-\-border\-width " pixels"
258Set the 258Set the
@@ -420,8 +420,8 @@ The value can be one of
420.IR fullwidth , 420.IR fullwidth ,
421or 421or
422.IR fullheight , 422.IR fullheight ,
423which correspond to the command-line options `\-fs', `\-mm', `\-fw', 423which correspond to the command-line options "\-fs", "\-mm", "\-fw",
424and `\-fh', respectively. 424and "\-fh", respectively.
425Note that this applies to the initial frame only. 425Note that this applies to the initial frame only.
426.TP 426.TP
427.BR geometry " (class " Geometry ) 427.BR geometry " (class " Geometry )
@@ -482,11 +482,11 @@ the window will be displayed in reverse video.
482.TP 482.TP
483.BR screenGamma " (class "ScreenGamma ) 483.BR screenGamma " (class "ScreenGamma )
484Gamma correction for colors, equivalent to the frame parameter 484Gamma correction for colors, equivalent to the frame parameter
485`screen\-gamma'. 485"screen\-gamma".
486.TP 486.TP
487.BR scrollBarWidth " (class "ScrollBarWidth ) 487.BR scrollBarWidth " (class "ScrollBarWidth )
488The scroll bar width in pixels, equivalent to the frame parameter 488The scroll bar width in pixels, equivalent to the frame parameter
489`scroll\-bar\-width'. 489"scroll\-bar\-width".
490.TP 490.TP
491.BR selectionFont " (class " SelectionFont ) 491.BR selectionFont " (class " SelectionFont )
492Font name for pop-up menu items, in non-toolkit versions of 492Font name for pop-up menu items, in non-toolkit versions of
@@ -583,7 +583,7 @@ There is a mailing list, @PACKAGE_BUGREPORT@, for reporting Emacs
583bugs and fixes. 583bugs and fixes.
584But before reporting something as a bug, please try to be sure that 584But before reporting something as a bug, please try to be sure that
585it really is a bug, not a misunderstanding or a deliberate feature. 585it really is a bug, not a misunderstanding or a deliberate feature.
586We ask you to read the section ``Reporting Bugs'' in the Emacs manual 586We ask you to read the section "Reporting Bugs" in the Emacs manual
587for hints on how and when to report bugs. 587for hints on how and when to report bugs.
588Also, include the version number of the Emacs you are running in 588Also, include the version number of the Emacs you are running in
589\fIevery\fR bug report that you send in. 589\fIevery\fR bug report that you send in.
diff --git a/doc/man/emacsclient.1 b/doc/man/emacsclient.1
index 6930271e548..e62fe930152 100644
--- a/doc/man/emacsclient.1
+++ b/doc/man/emacsclient.1
@@ -31,28 +31,31 @@ default editor.
31For 31For
32.B emacsclient 32.B emacsclient
33to work, you need an already running Emacs with a server. Within Emacs, 33to work, you need an already running Emacs with a server. Within Emacs,
34call the functions `server-start' or `server-mode'. (Your `.emacs' file 34call the functions "server-start" or "server-mode". (Your ".emacs" file
35can do this automatically if you add either `(server-start)' or 35can do this automatically if you add either "(server-start)" or
36`(server-mode 1)' to it.) 36"(server-mode 1)" to it.)
37 37
38When you've finished editing the buffer, type `C-x #' 38When you've finished editing the buffer, type "C-x #"
39(`server-edit'). This saves the file and sends a message back to the 39("server-edit"). This saves the file and sends a message back to the
40`emacsclient' program telling it to exit. The programs that use 40.B emacsclient
41`EDITOR' wait for the "editor" (actually, `emacsclient') to exit. `C-x 41program telling it to exit. The programs that use
42#' also checks for other pending external requests to edit various 42EDITOR wait for the "editor" (actually,
43.BR emacsclient )
44to exit. "C-x #" also checks for other pending external requests to
45edit various
43files, and selects the next such file. 46files, and selects the next such file.
44 47
45If you set the variable `server-window' to a window or a frame, `C-x 48If you set the variable "server-window" to a window or a frame, "C-x
46#' displays the server buffer in that window or in that frame. 49#" displays the server buffer in that window or in that frame.
47 50
48.SH OPTIONS 51.SH OPTIONS
49The programs follow the usual GNU command line syntax, with long 52The programs follow the usual GNU command line syntax, with long
50options starting with two dashes (`-'). 53options starting with two dashes ("\-").
51.TP 54.TP
52.B \-a, \-\-alternate-editor=EDITOR 55.B \-a, \-\-alternate-editor=EDITOR
53if the Emacs server is not running, run the specified editor instead. 56if the Emacs server is not running, run the specified editor instead.
54This can also be specified via the `ALTERNATE_EDITOR' environment variable. 57This can also be specified via the ALTERNATE_EDITOR environment variable.
55If the value of EDITOR is the empty string, run `emacs \-\-daemon' to 58If the value of EDITOR is the empty string, run "emacs \-\-daemon" to
56start Emacs in daemon mode, and try to connect to it. 59start Emacs in daemon mode, and try to connect to it.
57.TP 60.TP
58.B -c, \-\-create-frame 61.B -c, \-\-create-frame
@@ -70,7 +73,7 @@ Lisp expressions.
70.TP 73.TP
71.B \-f, \-\-server-file=FILENAME 74.B \-f, \-\-server-file=FILENAME
72use TCP configuration file FILENAME for communication. 75use TCP configuration file FILENAME for communication.
73This can also be specified via the `EMACS_SERVER_FILE' environment variable. 76This can also be specified via the EMACS_SERVER_FILE environment variable.
74.TP 77.TP
75.B \-n, \-\-no-wait 78.B \-n, \-\-no-wait
76returns 79returns
@@ -99,4 +102,3 @@ This manual page was written by Stephane Bortzmeyer <bortzmeyer@debian.org>,
99for the Debian GNU/Linux system (but may be used by others). 102for the Debian GNU/Linux system (but may be used by others).
100.SH COPYING 103.SH COPYING
101This manual page is in the public domain. 104This manual page is in the public domain.
102
diff --git a/doc/man/etags.1 b/doc/man/etags.1
index 08db3430d35..245d9b48198 100644
--- a/doc/man/etags.1
+++ b/doc/man/etags.1
@@ -80,8 +80,8 @@ Append to existing tag file. (For \fBvi\fP-format tag files, see also
80.B \-B, \-\-backward\-search 80.B \-B, \-\-backward\-search
81Tag files written in the format expected by \fBvi\fP contain regular 81Tag files written in the format expected by \fBvi\fP contain regular
82expression search instructions; the \fB\-B\fP option writes them using 82expression search instructions; the \fB\-B\fP option writes them using
83the delimiter `\|\fB?\fP\|', to search \fIbackwards\fP through files. 83the delimiter "\|\fB?\fP\|", to search \fIbackwards\fP through files.
84The default is to use the delimiter `\|\fB/\fP\|', to search \fIforwards\fP 84The default is to use the delimiter "\|\fB/\fP\|", to search \fIforwards\fP
85through files. 85through files.
86Only \fBctags\fP accepts this option. 86Only \fBctags\fP accepts this option.
87.TP 87.TP
@@ -117,8 +117,8 @@ final brace of a function or structure definition in C and C++.
117Parse the following files according to the given language. More than 117Parse the following files according to the given language. More than
118one such options may be intermixed with filenames. Use \fB\-\-help\fP 118one such options may be intermixed with filenames. Use \fB\-\-help\fP
119to get a list of the available languages and their default filename 119to get a list of the available languages and their default filename
120extensions. The `auto' language can be used to restore automatic 120extensions. The "auto" language can be used to restore automatic
121detection of language based on the file name. The `none' 121detection of language based on the file name. The "none"
122language may be used to disable language parsing altogether; only 122language may be used to disable language parsing altogether; only
123regexp matching is done in this case (see the \fB\-\-regex\fP option). 123regexp matching is done in this case (see the \fB\-\-regex\fP option).
124.TP 124.TP
@@ -256,7 +256,7 @@ Print the current version of the program (same as the version of the
256emacs \fBetags\fP is shipped with). 256emacs \fBetags\fP is shipped with).
257 257
258.SH "SEE ALSO" 258.SH "SEE ALSO"
259`\|\fBemacs\fP\|' entry in \fBinfo\fP; \fIGNU Emacs Manual\fP, Richard 259"\|\fBemacs\fP\|" entry in \fBinfo\fP; \fIGNU Emacs Manual\fP, Richard
260Stallman. 260Stallman.
261.br 261.br
262.BR cxref ( 1 ), 262.BR cxref ( 1 ),