Minor spelling and grammar fixes (bug#34756)

doc/misc/cc-mode.texi (Style Variables, Customizing Indentation):
doc/misc/ede.texi (Extending EDE, ede-project-placeholder)
(ede-target, ede-proj-target, ede-compilation-program, ede-compiler)
(ede-linker): Remove apostrophe from possessive "it's".
doc/lispintro/emacs-lisp-intro.texi (Find a File):
doc/misc/gnus-faq.texi (FAQ 2-2): Write "an other" as a single word.
doc/misc/gnus.texi (Article Buttons):
lisp/gnus/gnus-art.el (gnus-button-mid-or-mail-heuristic-alist)
(gnus-button-mid-or-mail-heuristic): Write singular number of
Message-IDs, rather than plural.
lisp/gnus/message.el (message-user-fqdn): Capitalize initialism.
This commit is contained in:
Basil L. Contovounesios 2019-03-05 20:24:41 +00:00
parent 52fd40068e
commit 099ef446c2
No known key found for this signature in database
GPG key ID: 205AB54A5D5D8CFF
7 changed files with 16 additions and 16 deletions

View file

@ -14824,7 +14824,7 @@ According to its documentation as shown by @kbd{C-h f} (the
@code{describe-function} command), the @code{find-file-noselect} @code{describe-function} command), the @code{find-file-noselect}
function reads the named file into a buffer and returns the buffer. function reads the named file into a buffer and returns the buffer.
(Its most recent version includes an optional @var{wildcards} argument, (Its most recent version includes an optional @var{wildcards} argument,
too, as well as another to read a file literally and an other you too, as well as another to read a file literally and another to
suppress warning messages. These optional arguments are irrelevant.) suppress warning messages. These optional arguments are irrelevant.)
However, the @code{find-file-noselect} function does not select the However, the @code{find-file-noselect} function does not select the

View file

@ -2548,7 +2548,7 @@ Basics}).
@item @item
The style variable @code{c-offsets-alist} (@pxref{c-offsets-alist}) is The style variable @code{c-offsets-alist} (@pxref{c-offsets-alist}) is
an association list with an element for each syntactic symbol. It's an association list with an element for each syntactic symbol. It's
handled a little differently from the other style variables. It's handled a little differently from the other style variables. Its
default global binding is the empty list @code{nil}, rather than default global binding is the empty list @code{nil}, rather than
@code{set-from-style}. Before the style system is initialized, you @code{set-from-style}. Before the style system is initialized, you
can add individual elements to @code{c-offsets-alist} by calling can add individual elements to @code{c-offsets-alist} by calling
@ -5286,7 +5286,7 @@ The simplest and most used kind of ``offset'' setting in
@defopt c-basic-offset @defopt c-basic-offset
@vindex basic-offset @r{(c-)} @vindex basic-offset @r{(c-)}
This style variable holds the basic offset between indentation levels. This style variable holds the basic offset between indentation levels.
It's factory default is 4, but all the built-in styles set it Its factory default is 4, but all the built-in styles set it
themselves, to some value between 2 (for @code{gnu} style) and 8 (for themselves, to some value between 2 (for @code{gnu} style) and 8 (for
@code{bsd}, @code{linux}, and @code{python} styles). @code{bsd}, @code{linux}, and @code{python} styles).
@end defopt @end defopt

View file

@ -1038,7 +1038,7 @@ details on using @eieio{} to extending classes, and writing methods.
If you intend to extend @ede{}, it is most likely that a new target type is If you intend to extend @ede{}, it is most likely that a new target type is
needed in one of the existing project types. The rest of this chapter needed in one of the existing project types. The rest of this chapter
will discuss extending the @code{ede-project} class, and it's targets. will discuss extending the @code{ede-project} class, and its targets.
See @file{project-am.el} for basic details on adding targets to it. See @file{project-am.el} for basic details on adding targets to it.
For the @code{ede-project} type, the core target class is called For the @code{ede-project} type, the core target class is called
@ -1477,7 +1477,7 @@ Get the inode of the directory project @var{PROJ} is in.
@end deffn @end deffn
@deffn Method ede-project-root :AFTER this @deffn Method ede-project-root :AFTER this
If a project knows it's root, return it here. If a project knows its root, return it here.
Allows for one-project-object-for-a-tree type systems. Allows for one-project-object-for-a-tree type systems.
@end deffn @end deffn
@ -1486,7 +1486,7 @@ Find a subproject of @var{PROJ} that corresponds to @var{DIR}.
@end deffn @end deffn
@deffn Method ede-project-root-directory :AFTER this &optional file @deffn Method ede-project-root-directory :AFTER this &optional file
If a project knows it's root, return it here. If a project knows its root, return it here.
Allows for one-project-object-for-a-tree type systems. Allows for one-project-object-for-a-tree type systems.
Optional @var{FILE} is the file to test. It is ignored in preference Optional @var{FILE} is the file to test. It is ignored in preference
of the anchor file for the project. of the anchor file for the project.
@ -2516,7 +2516,7 @@ In sources for @var{THIS}, change version numbers to @var{VERSION}.
@end deffn @end deffn
@deffn Method project-delete-target :AFTER ot @deffn Method project-delete-target :AFTER ot
Delete the current target @var{OT} from it's parent project. Delete the current target @var{OT} from its parent project.
@end deffn @end deffn
@deffn Method ede-target-sourcecode :AFTER this @deffn Method ede-target-sourcecode :AFTER this
@ -2715,7 +2715,7 @@ Converts all symbols into the objects to be used.
@end deffn @end deffn
@deffn Method project-delete-target :AFTER this @deffn Method project-delete-target :AFTER this
Delete the current target @var{THIS} from it's parent project. Delete the current target @var{THIS} from its parent project.
@end deffn @end deffn
@deffn Method ede-proj-makefile-target-name :AFTER this @deffn Method ede-proj-makefile-target-name :AFTER this
@ -4013,7 +4013,7 @@ Type: @code{list}
The commands used to execute this compiler. The commands used to execute this compiler.
The object which uses this compiler will place these commands after The object which uses this compiler will place these commands after
it's rule definition. its rule definition.
@item :autoconf @item :autoconf
Type: @code{list} @* Type: @code{list} @*
@ -4125,7 +4125,7 @@ Type: @code{list}
The commands used to execute this compiler. The commands used to execute this compiler.
The object which uses this compiler will place these commands after The object which uses this compiler will place these commands after
it's rule definition. its rule definition.
@item :objectextention @item :objectextention
Type: @code{string} Type: @code{string}
@ -4265,7 +4265,7 @@ Type: @code{list}
The commands used to execute this compiler. The commands used to execute this compiler.
The object which uses this compiler will place these commands after The object which uses this compiler will place these commands after
it's rule definition. its rule definition.
@item :objectextention @item :objectextention
Type: @code{string} Type: @code{string}

View file

@ -284,7 +284,7 @@ what's this?
@subsubheading Answer @subsubheading Answer
You get the message described in the q/a pair above while You get the message described in the q/a pair above while
starting Gnus, right? It's an other symptom for the same starting Gnus, right? It's another symptom for the same
problem, so read the answer above. problem, so read the answer above.
@node FAQ 2-3 @node FAQ 2-3

View file

@ -9394,7 +9394,7 @@ function must return @code{mid}, @code{mail}, @code{invalid} or
@item gnus-button-mid-or-mail-heuristic @item gnus-button-mid-or-mail-heuristic
@findex gnus-button-mid-or-mail-heuristic @findex gnus-button-mid-or-mail-heuristic
Function that guesses whether its argument is a message ID or a mail Function that guesses whether its argument is a message ID or a mail
address. Returns @code{mid} if it's a message IDs, @code{mail} if address. Returns @code{mid} if it's a message ID, @code{mail} if
it's a mail address, @code{ask} if unsure and @code{invalid} if the it's a mail address, @code{ask} if unsure and @code{invalid} if the
string is invalid. string is invalid.

View file

@ -7504,7 +7504,7 @@ must return `mid', `mail', `invalid' or `ask'."
(2.0 . "^[A-Z][a-z][A-Z][a-z][a-z][^a-z]")) ;; ^[A-Z][a-z]{4,4} (2.0 . "^[A-Z][a-z][A-Z][a-z][a-z][^a-z]")) ;; ^[A-Z][a-z]{4,4}
"An alist of (RATE . REGEXP) pairs for `gnus-button-mid-or-mail-heuristic'. "An alist of (RATE . REGEXP) pairs for `gnus-button-mid-or-mail-heuristic'.
A negative RATE indicates a message IDs, whereas a positive indicates a mail A negative RATE indicates a message ID, whereas a positive indicates a mail
address. The REGEXP is processed with `case-fold-search' set to nil." address. The REGEXP is processed with `case-fold-search' set to nil."
:version "22.1" :version "22.1"
:group 'gnus-article-buttons :group 'gnus-article-buttons
@ -7513,7 +7513,7 @@ address. The REGEXP is processed with `case-fold-search' set to nil."
(defun gnus-button-mid-or-mail-heuristic (mid-or-mail) (defun gnus-button-mid-or-mail-heuristic (mid-or-mail)
"Guess whether MID-OR-MAIL is a message ID or a mail address. "Guess whether MID-OR-MAIL is a message ID or a mail address.
Returns `mid' if MID-OR-MAIL is a message IDs, `mail' if it's a mail Returns `mid' if MID-OR-MAIL is a message ID, `mail' if it's a mail
address, `ask' if unsure and `invalid' if the string is invalid." address, `ask' if unsure and `invalid' if the string is invalid."
(let ((case-fold-search nil) (let ((case-fold-search nil)
(list gnus-button-mid-or-mail-heuristic-alist) (list gnus-button-mid-or-mail-heuristic-alist)

View file

@ -1741,7 +1741,7 @@ no, only reply back to the author."
:type 'boolean) :type 'boolean)
(defcustom message-user-fqdn nil (defcustom message-user-fqdn nil
"Domain part of Message-Ids." "Domain part of Message-IDs."
:version "22.1" :version "22.1"
:group 'message-headers :group 'message-headers
:link '(custom-manual "(message)News Headers") :link '(custom-manual "(message)News Headers")