aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBasil L. Contovounesios2019-03-05 20:24:41 +0000
committerBasil L. Contovounesios2019-03-05 20:24:41 +0000
commit099ef446c2c1014727cfe98268fe468eb2e8828b (patch)
treedd2cb05133c1862b85197c4dd727e38a96b896cf
parent52fd40068e0f8b41bd29eaec1334299eb86d0bff (diff)
downloademacs-099ef446c2c1014727cfe98268fe468eb2e8828b.tar.gz
emacs-099ef446c2c1014727cfe98268fe468eb2e8828b.zip
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.
-rw-r--r--doc/lispintro/emacs-lisp-intro.texi2
-rw-r--r--doc/misc/cc-mode.texi4
-rw-r--r--doc/misc/ede.texi16
-rw-r--r--doc/misc/gnus-faq.texi2
-rw-r--r--doc/misc/gnus.texi2
-rw-r--r--lisp/gnus/gnus-art.el4
-rw-r--r--lisp/gnus/message.el2
7 files changed, 16 insertions, 16 deletions
diff --git a/doc/lispintro/emacs-lisp-intro.texi b/doc/lispintro/emacs-lisp-intro.texi
index 3305f5b3add..c4b19a4e50a 100644
--- a/doc/lispintro/emacs-lisp-intro.texi
+++ b/doc/lispintro/emacs-lisp-intro.texi
@@ -14824,7 +14824,7 @@ According to its documentation as shown by @kbd{C-h f} (the
14824@code{describe-function} command), the @code{find-file-noselect} 14824@code{describe-function} command), the @code{find-file-noselect}
14825function reads the named file into a buffer and returns the buffer. 14825function reads the named file into a buffer and returns the buffer.
14826(Its most recent version includes an optional @var{wildcards} argument, 14826(Its most recent version includes an optional @var{wildcards} argument,
14827too, as well as another to read a file literally and an other you 14827too, as well as another to read a file literally and another to
14828suppress warning messages. These optional arguments are irrelevant.) 14828suppress warning messages. These optional arguments are irrelevant.)
14829 14829
14830However, the @code{find-file-noselect} function does not select the 14830However, the @code{find-file-noselect} function does not select the
diff --git a/doc/misc/cc-mode.texi b/doc/misc/cc-mode.texi
index 1a77a64e01c..47ae83ab396 100644
--- a/doc/misc/cc-mode.texi
+++ b/doc/misc/cc-mode.texi
@@ -2548,7 +2548,7 @@ Basics}).
2548@item 2548@item
2549The style variable @code{c-offsets-alist} (@pxref{c-offsets-alist}) is 2549The style variable @code{c-offsets-alist} (@pxref{c-offsets-alist}) is
2550an association list with an element for each syntactic symbol. It's 2550an association list with an element for each syntactic symbol. It's
2551handled a little differently from the other style variables. It's 2551handled a little differently from the other style variables. Its
2552default global binding is the empty list @code{nil}, rather than 2552default global binding is the empty list @code{nil}, rather than
2553@code{set-from-style}. Before the style system is initialized, you 2553@code{set-from-style}. Before the style system is initialized, you
2554can add individual elements to @code{c-offsets-alist} by calling 2554can add individual elements to @code{c-offsets-alist} by calling
@@ -5286,7 +5286,7 @@ The simplest and most used kind of ``offset'' setting in
5286@defopt c-basic-offset 5286@defopt c-basic-offset
5287@vindex basic-offset @r{(c-)} 5287@vindex basic-offset @r{(c-)}
5288This style variable holds the basic offset between indentation levels. 5288This style variable holds the basic offset between indentation levels.
5289It's factory default is 4, but all the built-in styles set it 5289Its factory default is 4, but all the built-in styles set it
5290themselves, to some value between 2 (for @code{gnu} style) and 8 (for 5290themselves, to some value between 2 (for @code{gnu} style) and 8 (for
5291@code{bsd}, @code{linux}, and @code{python} styles). 5291@code{bsd}, @code{linux}, and @code{python} styles).
5292@end defopt 5292@end defopt
diff --git a/doc/misc/ede.texi b/doc/misc/ede.texi
index 513461d0e0f..4edb53d9533 100644
--- a/doc/misc/ede.texi
+++ b/doc/misc/ede.texi
@@ -1038,7 +1038,7 @@ details on using @eieio{} to extending classes, and writing methods.
1038 1038
1039If you intend to extend @ede{}, it is most likely that a new target type is 1039If you intend to extend @ede{}, it is most likely that a new target type is
1040needed in one of the existing project types. The rest of this chapter 1040needed in one of the existing project types. The rest of this chapter
1041will discuss extending the @code{ede-project} class, and it's targets. 1041will discuss extending the @code{ede-project} class, and its targets.
1042See @file{project-am.el} for basic details on adding targets to it. 1042See @file{project-am.el} for basic details on adding targets to it.
1043 1043
1044For the @code{ede-project} type, the core target class is called 1044For 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.
1477@end deffn 1477@end deffn
1478 1478
1479@deffn Method ede-project-root :AFTER this 1479@deffn Method ede-project-root :AFTER this
1480If a project knows it's root, return it here. 1480If a project knows its root, return it here.
1481Allows for one-project-object-for-a-tree type systems. 1481Allows for one-project-object-for-a-tree type systems.
1482@end deffn 1482@end deffn
1483 1483
@@ -1486,7 +1486,7 @@ Find a subproject of @var{PROJ} that corresponds to @var{DIR}.
1486@end deffn 1486@end deffn
1487 1487
1488@deffn Method ede-project-root-directory :AFTER this &optional file 1488@deffn Method ede-project-root-directory :AFTER this &optional file
1489If a project knows it's root, return it here. 1489If a project knows its root, return it here.
1490Allows for one-project-object-for-a-tree type systems. 1490Allows for one-project-object-for-a-tree type systems.
1491Optional @var{FILE} is the file to test. It is ignored in preference 1491Optional @var{FILE} is the file to test. It is ignored in preference
1492of the anchor file for the project. 1492of the anchor file for the project.
@@ -2516,7 +2516,7 @@ In sources for @var{THIS}, change version numbers to @var{VERSION}.
2516@end deffn 2516@end deffn
2517 2517
2518@deffn Method project-delete-target :AFTER ot 2518@deffn Method project-delete-target :AFTER ot
2519Delete the current target @var{OT} from it's parent project. 2519Delete the current target @var{OT} from its parent project.
2520@end deffn 2520@end deffn
2521 2521
2522@deffn Method ede-target-sourcecode :AFTER this 2522@deffn Method ede-target-sourcecode :AFTER this
@@ -2715,7 +2715,7 @@ Converts all symbols into the objects to be used.
2715@end deffn 2715@end deffn
2716 2716
2717@deffn Method project-delete-target :AFTER this 2717@deffn Method project-delete-target :AFTER this
2718Delete the current target @var{THIS} from it's parent project. 2718Delete the current target @var{THIS} from its parent project.
2719@end deffn 2719@end deffn
2720 2720
2721@deffn Method ede-proj-makefile-target-name :AFTER this 2721@deffn Method ede-proj-makefile-target-name :AFTER this
@@ -4013,7 +4013,7 @@ Type: @code{list}
4013 4013
4014The commands used to execute this compiler. 4014The commands used to execute this compiler.
4015The object which uses this compiler will place these commands after 4015The object which uses this compiler will place these commands after
4016it's rule definition. 4016its rule definition.
4017 4017
4018@item :autoconf 4018@item :autoconf
4019Type: @code{list} @* 4019Type: @code{list} @*
@@ -4125,7 +4125,7 @@ Type: @code{list}
4125 4125
4126The commands used to execute this compiler. 4126The commands used to execute this compiler.
4127The object which uses this compiler will place these commands after 4127The object which uses this compiler will place these commands after
4128it's rule definition. 4128its rule definition.
4129 4129
4130@item :objectextention 4130@item :objectextention
4131Type: @code{string} 4131Type: @code{string}
@@ -4265,7 +4265,7 @@ Type: @code{list}
4265 4265
4266The commands used to execute this compiler. 4266The commands used to execute this compiler.
4267The object which uses this compiler will place these commands after 4267The object which uses this compiler will place these commands after
4268it's rule definition. 4268its rule definition.
4269 4269
4270@item :objectextention 4270@item :objectextention
4271Type: @code{string} 4271Type: @code{string}
diff --git a/doc/misc/gnus-faq.texi b/doc/misc/gnus-faq.texi
index 55010d4e430..d4be7b1f0ce 100644
--- a/doc/misc/gnus-faq.texi
+++ b/doc/misc/gnus-faq.texi
@@ -284,7 +284,7 @@ what's this?
284@subsubheading Answer 284@subsubheading Answer
285 285
286You get the message described in the q/a pair above while 286You get the message described in the q/a pair above while
287starting Gnus, right? It's an other symptom for the same 287starting Gnus, right? It's another symptom for the same
288problem, so read the answer above. 288problem, so read the answer above.
289 289
290@node FAQ 2-3 290@node FAQ 2-3
diff --git a/doc/misc/gnus.texi b/doc/misc/gnus.texi
index a0c57329433..4ee80eacb2e 100644
--- a/doc/misc/gnus.texi
+++ b/doc/misc/gnus.texi
@@ -9394,7 +9394,7 @@ function must return @code{mid}, @code{mail}, @code{invalid} or
9394@item gnus-button-mid-or-mail-heuristic 9394@item gnus-button-mid-or-mail-heuristic
9395@findex gnus-button-mid-or-mail-heuristic 9395@findex gnus-button-mid-or-mail-heuristic
9396Function that guesses whether its argument is a message ID or a mail 9396Function that guesses whether its argument is a message ID or a mail
9397address. Returns @code{mid} if it's a message IDs, @code{mail} if 9397address. Returns @code{mid} if it's a message ID, @code{mail} if
9398it's a mail address, @code{ask} if unsure and @code{invalid} if the 9398it's a mail address, @code{ask} if unsure and @code{invalid} if the
9399string is invalid. 9399string is invalid.
9400 9400
diff --git a/lisp/gnus/gnus-art.el b/lisp/gnus/gnus-art.el
index 9cd5a1f6435..4eb6249490e 100644
--- a/lisp/gnus/gnus-art.el
+++ b/lisp/gnus/gnus-art.el
@@ -7504,7 +7504,7 @@ must return `mid', `mail', `invalid' or `ask'."
7504 (2.0 . "^[A-Z][a-z][A-Z][a-z][a-z][^a-z]")) ;; ^[A-Z][a-z]{4,4} 7504 (2.0 . "^[A-Z][a-z][A-Z][a-z][a-z][^a-z]")) ;; ^[A-Z][a-z]{4,4}
7505 "An alist of (RATE . REGEXP) pairs for `gnus-button-mid-or-mail-heuristic'. 7505 "An alist of (RATE . REGEXP) pairs for `gnus-button-mid-or-mail-heuristic'.
7506 7506
7507A negative RATE indicates a message IDs, whereas a positive indicates a mail 7507A negative RATE indicates a message ID, whereas a positive indicates a mail
7508address. The REGEXP is processed with `case-fold-search' set to nil." 7508address. The REGEXP is processed with `case-fold-search' set to nil."
7509 :version "22.1" 7509 :version "22.1"
7510 :group 'gnus-article-buttons 7510 :group 'gnus-article-buttons
@@ -7513,7 +7513,7 @@ address. The REGEXP is processed with `case-fold-search' set to nil."
7513 7513
7514(defun gnus-button-mid-or-mail-heuristic (mid-or-mail) 7514(defun gnus-button-mid-or-mail-heuristic (mid-or-mail)
7515 "Guess whether MID-OR-MAIL is a message ID or a mail address. 7515 "Guess whether MID-OR-MAIL is a message ID or a mail address.
7516Returns `mid' if MID-OR-MAIL is a message IDs, `mail' if it's a mail 7516Returns `mid' if MID-OR-MAIL is a message ID, `mail' if it's a mail
7517address, `ask' if unsure and `invalid' if the string is invalid." 7517address, `ask' if unsure and `invalid' if the string is invalid."
7518 (let ((case-fold-search nil) 7518 (let ((case-fold-search nil)
7519 (list gnus-button-mid-or-mail-heuristic-alist) 7519 (list gnus-button-mid-or-mail-heuristic-alist)
diff --git a/lisp/gnus/message.el b/lisp/gnus/message.el
index 0d166fb8ce0..d260bdb2a2c 100644
--- a/lisp/gnus/message.el
+++ b/lisp/gnus/message.el
@@ -1741,7 +1741,7 @@ no, only reply back to the author."
1741 :type 'boolean) 1741 :type 'boolean)
1742 1742
1743(defcustom message-user-fqdn nil 1743(defcustom message-user-fqdn nil
1744 "Domain part of Message-Ids." 1744 "Domain part of Message-IDs."
1745 :version "22.1" 1745 :version "22.1"
1746 :group 'message-headers 1746 :group 'message-headers
1747 :link '(custom-manual "(message)News Headers") 1747 :link '(custom-manual "(message)News Headers")