Skip to content

Commit 00adee8

Browse files
committed
; Fix punctuation in docs
1 parent ab29b28 commit 00adee8

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

62 files changed

+433
-431
lines changed

doc/emacs/custom.texi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2044,7 +2044,7 @@ sequences. For example, to bind @kbd{C-c h} to the string
20442044
@end example
20452045

20462046
Non-@acronym{ASCII} characters can be specified directly in the
2047-
string. To bind to e.g. @samp{ol@'a}, use:
2047+
string. To bind to e.g. @samp{ol@'a}, use:
20482048

20492049
@example
20502050
(keymap-global-set "C-c h" (key-description "ol@'a"))

doc/emacs/display.texi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2198,7 +2198,7 @@ The line numbers are displayed in a special face @code{line-number}.
21982198
The current line number is displayed in a different face,
21992199
@code{line-number-current-line}, so you can make the current line's
22002200
number have a distinct appearance, which will help locating the line
2201-
showing point. Additional faces @code{line-number-major-tick} and
2201+
showing point. Additional faces @code{line-number-major-tick} and
22022202
@code{line-number-minor-tick} can be used to highlight the line numbers
22032203
of lines which are a multiple of certain numbers. Customize
22042204
@code{display-line-numbers-major-tick} and

doc/emacs/fortran-xtra.texi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ check the outermost block since that may be incomplete.
124124
@findex f90-beginning-of-block
125125
@item C-M-p
126126
Move to the start of the current code block
127-
(@code{fortran-beginning-of-block}/@code{f90-beginning-of-block}). This
127+
(@code{fortran-beginning-of-block}/@code{f90-beginning-of-block}). This
128128
is like @code{fortran-end-of-block}, but moves backwards.
129129
@end table
130130

doc/emacs/frames.texi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1543,7 +1543,7 @@ After customizing the variable @code{tab-bar-select-tab-modifiers} to
15431543
specify one or more @var{modifier} keys, you can select a tab by its
15441544
ordinal number using one of the specified modifiers in combination
15451545
with the tab number to select. The number 9 can be used to select the
1546-
last tab. You can select any modifiers supported by Emacs,
1546+
last tab. You can select any modifiers supported by Emacs,
15471547
@pxref{Modifier Keys}. To display the tab number alongside the tab
15481548
name, you can customize another variable @code{tab-bar-tab-hints}.
15491549
This will help you decide which numerical key to press to select the

doc/emacs/trouble.texi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1488,7 +1488,7 @@ the Emacs Lisp Reference Manual
14881488
@cindex coding standards for Emacs submissions
14891489

14901490
Contributed code should follow the GNU Coding Standards
1491-
@url{https://www.gnu.org/prep/standards/}. This may also be available
1491+
@url{https://www.gnu.org/prep/standards/}. This may also be available
14921492
in info on your system.
14931493

14941494
If it doesn't, we'll need to find someone to fix the code before we

doc/emacs/vc1-xtra.texi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ current directory as a tag named @var{name}
177177
@findex vc-retrieve-tag
178178
@item C-x v r @var{name} @key{RET}
179179
For all registered files at or below the current directory level,
180-
retrieve the tagged revision @var{name}. This command will switch to a
180+
retrieve the tagged revision @var{name}. This command will switch to a
181181
branch if @var{name} is a branch name and your VCS distinguishes
182182
branches from tags. (@code{vc-retrieve-tag}).
183183

doc/lispintro/emacs-lisp-intro.texi

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ Boston, MA 02110-1301 USA
130130
@end iftex
131131

132132
@ifnottex
133-
Printed copies available from @uref{https://shop.fsf.org/}. Published by:
133+
Printed copies available from @uref{https://shop.fsf.org/}. Published by:
134134

135135
@example
136136
GNU Press, https://www.fsf.org/licensing/gnu-press/
@@ -1969,7 +1969,7 @@ argument is the string of characters, the second and third arguments
19691969
are numbers that indicate the beginning (inclusive) and end
19701970
(exclusive) of the substring. The numbers are a count of the number
19711971
of characters (including spaces and punctuation) from the beginning of
1972-
the string. Note that the characters in a string are numbered from
1972+
the string. Note that the characters in a string are numbered from
19731973
zero, not one.
19741974

19751975
@need 800
@@ -5314,7 +5314,7 @@ Looking at the @code{let*} expression in @code{append-to-buffer}:
53145314

53155315
@noindent
53165316
we see that @code{append-to} is bound to the value returned by the
5317-
@w{@code{(get-buffer-create buffer)}}. On the next line,
5317+
@w{@code{(get-buffer-create buffer)}}. On the next line,
53185318
@code{append-to} is used as an argument to
53195319
@code{get-buffer-window-list}; this would not be possible with the
53205320
@code{let} expression. Note that @code{point} is automatically bound
@@ -16099,7 +16099,7 @@ placing point somewhere in the buffer, typing @kbd{M-:}, typing the
1609916099
and then typing @key{RET}. This causes Emacs to evaluate the
1610016100
expression in the minibuffer, but to use as the value of point the
1610116101
position of point in the @file{*scratch*} buffer. (@kbd{M-:} is the
16102-
key binding for @code{eval-expression}. Also, @code{nil} does not
16102+
key binding for @code{eval-expression}. Also, @code{nil} does not
1610316103
appear in the @file{*scratch*} buffer since the expression is
1610416104
evaluated in the minibuffer.)
1610516105

doc/lispref/commands.texi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1741,7 +1741,7 @@ this is @code{nil}.
17411741
@item @var{dx}, @var{dy}
17421742
These are the pixel offsets of the click relative to the top left
17431743
corner of the @var{object}'s glyph that is the nearest one to the
1744-
click. The relevant @var{object}s can be either a buffer, or a string,
1744+
click. The relevant @var{object}s can be either a buffer, or a string,
17451745
or an image, see above. If @var{object} is @code{nil} or a string,
17461746
the coordinates are relative to the top left corner of the character
17471747
glyph clicked on. Note that the offsets are always zero on text-mode

doc/lispref/display.texi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2771,7 +2771,7 @@ width of the vertical and horizontal lines to draw; they default to (1
27712771
. 1). A negative horizontal or vertical width @minus{}@var{n} means
27722772
to draw a line of width @var{n} that occupies the space of the
27732773
underlying text, thus avoiding any increase in the character height or
2774-
width. For simplification the width could be specified with only a
2774+
width. For simplification the width could be specified with only a
27752775
single number @var{n} instead of a list, such case is equivalent to
27762776
@code{((abs @var{n}) . @var{n})}.
27772777

doc/lispref/files.texi

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2708,7 +2708,7 @@ file names (@pxref{Magic File Names}).
27082708

27092709
@defmac file-name-unquote name
27102710
This macro removes the quotation prefix @samp{/:} from the file
2711-
@var{name}, if any. If @var{name} is a remote file name, the local
2711+
@var{name}, if any. If @var{name} is a remote file name, the local
27122712
part of @var{name} is unquoted.
27132713
@end defmac
27142714

@@ -2740,7 +2740,7 @@ This function creates a temporary file and returns its name. Emacs
27402740
creates the temporary file's name by adding to @var{prefix} some
27412741
random characters that are different in each Emacs job. The result is
27422742
guaranteed to be a newly created file, containing @var{text} if that's
2743-
given as a string and empty otherwise. On MS-DOS, this function can
2743+
given as a string and empty otherwise. On MS-DOS, this function can
27442744
truncate @var{prefix} to fit into the 8+3 file-name limits. If
27452745
@var{prefix} is a relative file name, it is expanded against
27462746
@code{temporary-file-directory}.

0 commit comments

Comments
 (0)