]> git.eshelyaron.com Git - emacs.git/commitdiff
; Fix doc typos related to indefinite articles
authorGlenn Morris <rgm@gnu.org>
Fri, 16 Feb 2018 22:33:57 +0000 (17:33 -0500)
committerGlenn Morris <rgm@gnu.org>
Fri, 16 Feb 2018 22:33:57 +0000 (17:33 -0500)
32 files changed:
admin/grammars/c.by
admin/notes/unicode
doc/lispref/buffers.texi
doc/misc/gnus-faq.texi
etc/CALC-NEWS
etc/ETAGS.EBNF
etc/NEWS.20
etc/NEWS.21
etc/NEWS.22
etc/ORG-NEWS
lisp/calendar/todo-mode.el
lisp/cedet/semantic/analyze.el
lisp/cedet/semantic/dep.el
lisp/cedet/semantic/lex.el
lisp/emacs-lisp/package.el
lisp/font-lock.el
lisp/gnus/deuglify.el
lisp/gnus/gnus-cus.el
lisp/image/gravatar.el
lisp/net/mailcap.el
lisp/org/ob-calc.el
lisp/org/org-clock.el
lisp/org/ox-odt.el
lisp/progmodes/cc-engine.el
lisp/progmodes/sql.el
lisp/term/README
lisp/textmodes/flyspell.el
lisp/wid-edit.el
src/.gdbinit
src/coding.c
src/process.c
src/xsettings.c

index 4a52bec07f0b12c682db7820582533563eefe7c3..3755c3232201bd7ed9d2af8075460c6d072a446f 100644 (file)
@@ -917,8 +917,8 @@ variablearg-opt-name
     ( ,$1 )
   | semantic-list arg-list
     ( (car ( EXPAND $1 function-pointer )) $2)
- ;; Klaus Berndl: This allows variableargs without a arg-name being
- ;; parsed correct even if there several pointers (*)
+ ;; Klaus Berndl: This allows variableargs without an arg-name being
+ ;; parsed correctly even if there several pointers (*)
   | opt-stars
     ( "" ,$1 nil nil nil )
   ;
index 85ba67bc5033959b3b4cb8af853d73c4477504ab..ff0de8aeff9182daad0760324f01056defe05426 100644 (file)
@@ -85,7 +85,7 @@ regard to completeness.
        code (keymap.c and print.c).
 
  * Rationalize character syntax and its relationship to the Unicode
-   database.  (Applies mainly to symbol an punctuation syntax.)
+   database.  (Applies mainly to symbol and punctuation syntax.)
 
  * Fontset handling and customization needs work.  We want to relate
    fonts to scripts, probably based on the Unicode blocks.  The
index 3f43b1bb3b7fe695ec994fd2fcc013a49ecd26bc..a572fc702bd00d3f6761529456c74a7edf458c08 100644 (file)
@@ -667,7 +667,7 @@ reason.
 
 @defun ask-user-about-supersession-threat filename
 This function is used to ask a user how to proceed after an attempt to
-modify an buffer visiting file @var{filename} when the file is newer
+modify a buffer visiting file @var{filename} when the file is newer
 than the buffer text.  Emacs detects this because the modification
 time of the file on disk is newer than the last save-time and its contents
 have changed.
index 318bb4474d8e992cd9e581103c0b3e0d50effc7f..26135b81de791a4853a4badd55388f78edf29243 100644 (file)
@@ -1449,7 +1449,7 @@ all those email addresses?
 
 @subsubheading Answer
 
-There's an very basic solution for this, mail aliases.
+There's a very basic solution for this, mail aliases.
 You can store your mail addresses in a ~/.mailrc file using a simple
 alias syntax:
 
index 394894ad036b80aec59fac232c98704ded547e5e..04baf41148e151da45460f9f0592c8b6431587f1 100644 (file)
@@ -70,7 +70,7 @@ For changes in Emacs 23.1 and later, see the main Emacs NEWS file.
 \f
 * Version 2.02d:
 
-** Fixed a minor installation problem with a Emacs 19.29 byte-compiler bug.
+** Fixed a minor installation problem with an Emacs 19.29 byte-compiler bug.
 
 ** Removed archaic "macedit" package (superseded by "edmacro").
 
index 221078a88a0d209f1574c092291faf3f59f8a55d..23bb9445edd11a8c6155675656687c24e91ab380 100644 (file)
@@ -84,7 +84,7 @@ whether it is possible to deduce the tag name from the pattern, and make
 an unnamed tag in those cases.  The name deduced from the pattern of an
 unnamed tag is the implicit name of that tag.
   When the user looks for a tag, and Emacs finds no explicit tag names
-that match it, Emacs then looks for an tag whose implicit tag name
+that match it, Emacs then looks for a tag whose implicit tag name
 matches the request.  etags.c uses implicit tag names when possible, in
 order to reduce the size of the tags file.
   An implicit tag name is deduced from the pattern by discarding the
index 3391d3e4682f0a4f07a6ed3166b95a97611c5e86..31e640fa94e861015dc68977127006348ed897d3 100644 (file)
@@ -4130,17 +4130,16 @@ is an alternative to using the keymap itself.
 ** Changes in invisibility features
 
 *** Isearch can now temporarily show parts of the buffer which are
-hidden by an overlay with a invisible property, when the search match
+hidden by an overlay with an invisible property, when the search match
 is inside that portion of the buffer.  To enable this the overlay
-should have a isearch-open-invisible property which is a function that
-would be called having the overlay as an argument, the function should
-make the overlay visible.
+should have an isearch-open-invisible property, which is a function that
+would be called with the overlay as an argument, and should make it visible.
 
 During incremental search the overlays are shown by modifying the
-invisible and intangible properties, if beside this more actions are
-needed the overlay should have a isearch-open-invisible-temporary
-which is a function. The function is called with 2 arguments: one is
-the overlay and the second is nil when it should show the overlay and
+invisible and intangible properties.  If more actions are
+needed, the overlay should have an isearch-open-invisible-temporary property,
+which is a function.  The function is called with 2 arguments: one is
+the overlay, and the second is nil when it should show the overlay and
 t when it should hide it.
 
 *** add-to-invisibility-spec, remove-from-invisibility-spec
index 04bde7e3aeacd9cf30ec0b466c050588194707b4..ea4f4212ee0076bdf09a4e829d933ad8d062f4a8 100644 (file)
@@ -4348,7 +4348,7 @@ integer.  This is a required property.
 `:pt-height HEIGHT'
 
 HEIGHT specifies the height of the image in pt (1/72 inch).  HEIGHT
-must be a integer.  This is an required property.
+must be an integer.  This is a required property.
 
 `:bounding-box BOX'
 
@@ -4868,7 +4868,7 @@ temporarily to nil, for example
      (enlarge-window 10))
 
 Likewise, an attempt to split a fixed-height window vertically,
-or a fixed-width window horizontally results in a error.
+or a fixed-width window horizontally results in an error.
 
 ** The cursor-type frame parameter is now supported on MS-DOS
 terminals.  When Emacs starts, it by default changes the cursor shape
index c1009fc0d0262dbab3268989c7f23ba4842db74f..26054d2c397d1929c541a0dd1ea6c056380e8711 100644 (file)
@@ -4895,7 +4895,7 @@ described above and specifies the total height of the line, causing a
 varying number of pixels to be inserted after the line to make it line
 exactly that many pixels high.
 
-If the `line-spacing' property value is an positive integer, the value
+If the `line-spacing' property value is a positive integer, the value
 is used as additional pixels to insert after the display line; this
 overrides the default frame `line-spacing' and any buffer local value of
 the `line-spacing' variable.
index e7e60bea279e13f4dae2fc18a8fe7b4842491100..12eab44f0f7354ef245077527f55d66f0d97b0fe 100644 (file)
@@ -148,7 +148,7 @@ directories in published site-maps.
 **** Scheme: support for tables
 **** Scheme: new variable: ~org-babel-scheme-null-to~
 
-This new custom option allows to use a empty list or null symbol to
+This new custom option allows you to use an empty list or null symbol to
 format the table output, initially assigned to ~hlines~.
 
 **** Scheme: new header ~:prologue~
index 70e6bdf4341254a5ec164adf2adb33bc5ad2c8aa..c1c8e196eaffd1e13e4eec9a48712d7f563b0912 100644 (file)
@@ -631,7 +631,7 @@ Todo mode revisit this file or, with option
 file was last visited.
 
 If you call this command before you have created any todo file in
-the current format, and you have an todo file in old format, it
+the current format, and you have a todo file in old format, it
 will ask you whether to convert that file and show it.
 Otherwise, calling this command before any todo file exists
 prompts for a file name and an initial category (defaulting to
index 2162df455abbd728421b79371066070519f2c426..1abf785834b36ba2b27235ba925985ed324eb357 100644 (file)
@@ -121,7 +121,7 @@ See `semantic-analyze-scoped-tags' for details.")
           :type buffer
           :documentation "The buffer this context is derived from.")
    (errors :initarg :errors
-          :documentation "Any errors thrown an caught during analysis.")
+          :documentation "Any errors thrown and caught during analysis.")
    )
   "Base analysis data for any context.")
 
index 6f1bde02091805c844f529b4e32c9b40db0573d2..640884d014b37a997c50c4cbe4e7e2b86f77b078 100644 (file)
@@ -67,7 +67,7 @@ For mode authors, use
 `defcustom-mode-local-semantic-dependency-system-include-path'
 to create a mode-specific variable to control this.
 
-When searching for a file associated with a name found in an tag of
+When searching for a file associated with a name found in a tag of
 class include, this path will be inspected for includes of type
 `system'.  Some include tags are agnostic to this setting and will
 check both the project and system directories.")
index 3a8b0c78002e9d8cc21943c496f035bd8f40f318..81dfc055f2c84e8292dcea01ac0f53baae64ce21 100644 (file)
@@ -408,7 +408,7 @@ TYPE name does not exist.  Otherwise signal an error."
 SPECS must be a list of (TYPE . TOKENS) elements, where:
 
   TYPE is the name of the type symbol to define.
-  TOKENS is an list of (TOKSYM . MATCHER) elements, where:
+  TOKENS is a list of (TOKSYM . MATCHER) elements, where:
 
     TOKSYM is any lexical token symbol.
     MATCHER is a string or regexp a text must match to be a such
index 853e9cb2acdc9cd665484e0849da714242f64ac7..c56502236eec7cc210b8fd1d04f805fba02e2f27 100644 (file)
@@ -1766,7 +1766,7 @@ with PKG-DESC entry removed."
   "Return a list of dependencies for PACKAGE sorted by dependency.
 PACKAGE is included as the first element of the returned list.
 ONLY is an alist associating package names to package objects.
-Only these packages will be in the return value an their cdrs are
+Only these packages will be in the return value and their cdrs are
 destructively set to nil in ONLY."
   (let ((out))
     (dolist (dep (package-desc-reqs package))
index 6f28569fc32e4265656aa275587ee6e5049a4a4d..29d3bc5864692d56556a6118505d21f506653a21 100644 (file)
@@ -1835,7 +1835,7 @@ If SYNTACTIC-KEYWORDS is non-nil, it means these keywords are used for
                               (eval keywords)))))
 
 (defun font-lock-value-in-major-mode (values)
-  "If VALUES is an list, use `major-mode' as a key and return the `assq' value.
+  "If VALUES is a list, use `major-mode' as a key and return the `assq' value.
 VALUES should then be an alist on the form ((MAJOR-MODE . VALUE) ...) where
 MAJOR-MODE may be t.
 If VALUES isn't a list, return VALUES."
index ce3ead3568f4aee659ae17fb38a464dc6ca8ffb1..d2bc87caa2770333f1b202c496bad43789c06606 100644 (file)
   :group 'gnus-outlook-deuglify)
 
 (defcustom gnus-outlook-display-hook nil
-  "A hook called after an deuglified article has been prepared.
+  "A hook called after a deuglified article has been prepared.
 It is run after `gnus-article-prepare-hook'."
   :version "22.1"
   :type 'hook
index d265fd5245e7af33c3317fd64e8cd703261ea44d..0bac2cb1ada647453d7d63f0238f891012bc87e2 100644 (file)
@@ -365,7 +365,7 @@ category."))
     (unless (or group topic)
       (error "No group on current line"))
     (when (and group topic)
-      (error "Both a group an topic on current line"))
+      (error "Both a group and topic on current line"))
     (unless (or topic (setq info (gnus-get-info group)))
       (error "Killed group; can't be edited"))
     ;; Ready.
index e611e965abbfc26dc2aabb08d9fe53abc9e51e95..a6e65c39c9d3078912fd29c052b3a519c5f901b9 100644 (file)
   "Base URL for getting gravatars.")
 
 (defun gravatar-hash (mail-address)
-  "Create an hash from MAIL-ADDRESS."
+  "Create a hash from MAIL-ADDRESS."
   (md5 (downcase mail-address)))
 
 (defun gravatar-build-url (mail-address)
-  "Return an URL to retrieve MAIL-ADDRESS gravatar."
+  "Return a URL to retrieve MAIL-ADDRESS gravatar."
   (format "%s/%s?d=404&r=%s&s=%d"
           gravatar-base-url
           (gravatar-hash mail-address)
index 9fbc882fdcca74df79d221662126b630580dd196..f0694b79ea0aa2ddf52c0d7f4ea30d71d7856734 100644 (file)
@@ -92,7 +92,7 @@ replaced with the file.
 MIME-TYPE is a regular expression being matched against the
 actual MIME type.  It is implicitly surrounded with ^ and $.
 
-TEST is an lisp form which is evaluated in order to test if the
+TEST is a lisp form which is evaluated in order to test if the
 entry should be chosen.  The `test' entry is optional.
 
 When selecting a viewer for a given MIME type, the first viewer
@@ -555,7 +555,7 @@ MAILCAPS if set; otherwise (on Unix) use the path from RFC 1524, plus
 (defun mailcap-mailcap-entry-passes-test (info)
   "Replace the test clause of INFO itself with a boolean for some cases.
 This function supports only `test -n $DISPLAY' and `test -z $DISPLAY',
-replaces them with t or nil.  As for others or if INFO has a interactive
+replaces them with t or nil.  As for others or if INFO has an interactive
 spec (needsterm, needsterminal, or needsx11) but DISPLAY is not set,
 the test clause will be unchanged."
   (let ((test (assq 'test info))       ; The test clause
index f491a6cdef91233cf7e67f1656a12a1b759cf11b..4ed5dd4be05d132ceeb0fb547fe7a3e9f8b17b86 100644 (file)
@@ -37,7 +37,7 @@
 (declare-function org-trim "org" (s &optional keep-lead))
 
 (defvar org-babel-default-header-args:calc nil
-  "Default arguments for evaluating an calc source block.")
+  "Default arguments for evaluating a calc source block.")
 
 (defun org-babel-expand-body:calc (body _params)
   "Expand BODY according to PARAMS, return the expanded body." body)
index 9bc1f0c06d753fc63d8a42038461dd9a0f098e0d..4c5fcc64b0fccc372202ad3a2e70fbb8927af5e4 100644 (file)
@@ -1394,7 +1394,7 @@ the default behavior."
 ;;;###autoload
 (defun org-clock-in-last (&optional arg)
   "Clock in the last closed clocked item.
-When already clocking in, send an warning.
+When already clocking in, send a warning.
 With a universal prefix argument, select the task you want to
 clock in from the last clocked in tasks.
 With two universal prefix arguments, start clocking using the
index e0c51662d101e00b7f25c4c394f2df23c9583e18..cdee568fc81060c6f55b12fc6fe6b62bb97f73c9 100644 (file)
@@ -600,8 +600,7 @@ allow document of a given class (irrespective of its source
 format) to be converted to any of the export formats associated
 with that class.
 
-See default setting of this variable for an typical
-configuration."
+See default setting of this variable for a typical configuration."
   :group 'org-export-odt
   :version "24.1"
   :type
@@ -1938,7 +1937,7 @@ holding contextual information."
 
 (defun org-odt-format-inlinetask-default-function
   (todo todo-type priority name tags contents)
-  "Default format function for inlinetasks.
+  "Default format function for inlinetasks.
 See `org-odt-format-inlinetask-function' for details."
   (format "\n<text:p text:style-name=\"%s\">%s</text:p>"
          "Text_20_body"
index c9e1cf2427defd0c394bd42de86c7450c7d9e944..e039020d366c351387306f3e49f5eb0f35ffb80f 100644 (file)
@@ -3295,7 +3295,7 @@ comment at the start of cc-engine.el for more info."
                             (point)
                           here)))
        pa+1                  ; pos just after an opening PAren (or brace).
-       (ren+1 from)          ; usually a pos just after an closing paREN etc.
+       (ren+1 from)          ; usually a pos just after a closing paREN etc.
                              ; Is actually the pos. to scan for a (/{/[ from,
                              ; which sometimes is after a silly )/}/].
        paren+1               ; Pos after some opening or closing paren.
index ae212bd8f857f24f487ca6d75cdc941bf252bbf8..d20c579f6609c4568ec84f8a7daf50494eb03883 100644 (file)
@@ -2774,7 +2774,7 @@ local variable."
 
     ;; Our start must be between them
     (goto-char last)
-    ;; Find an beginning-of-stmt that's not in a comment
+    ;; Find a beginning-of-stmt that's not in a comment
     (while (and (re-search-forward regexp next t 1)
                 (nth 7 (syntax-ppss)))
       (goto-char (match-end 0)))
index d5453e1a8a771190a7883ec7fd53464cdd36ff6f..4ab1a4300db81fd0358b3715cdeffdba9b564c30 100644 (file)
@@ -60,7 +60,7 @@ they'll frustrate you after you've forgotten about them.
    For another, the X keysyms provide a standard set of names that Emacs knows
 about.  It tries to bind many of them to useful things at startup, before your
 .emacs is read (so you can override them).  In some ways, the X keysym standard
-is a admittedly poor one; it's incomplete, and not well matched to the set of
+is an admittedly poor one; it's incomplete, and not well matched to the set of
 'virtual keys' that UNIX terminfo(3) provides.  But, trust us, the alternatives
 were worse.
 
index 353d4352f6079b50128d9a37912b380512e8e84c..5568bbb1d97e96af7e0c779dd8e7ed3fb07da8c7 100644 (file)
@@ -1732,7 +1732,7 @@ FLYSPELL-BUFFER."
 ;;*---------------------------------------------------------------------*/
 ;;*    flyspell-properties-at-p ...                                     */
 ;;*    -------------------------------------------------------------    */
-;;*    Is there an highlight properties at position pos?                */
+;;*    Is there a highlight property at position pos?                   */
 ;;*---------------------------------------------------------------------*/
 (defun flyspell-properties-at-p (pos)
   "Return t if there is a text property at POS, not counting `local-map'.
index 8828236e3ea50d2452e9b2c8f82a5fdad9473584..bee7f8069ee13377471f8cb7783718cb25a72374 100644 (file)
@@ -1229,7 +1229,7 @@ When not inside a field, signal an error."
                               (save-restriction
                                 ;; `widget-narrow-to-field' can be
                                 ;; active when this function is called
-                                ;; from an change-functions hook. So
+                                ;; from a change-functions hook. So
                                 ;; temporarily remove field narrowing
                                 ;; before to call `get-char-property'.
                                 (widen)
@@ -1802,7 +1802,7 @@ If END is omitted, it defaults to the length of LIST."
 ;;; The `url-link' Widget.
 
 (define-widget 'url-link 'link
-  "A link to an www page."
+  "A link to a web page."
   :action 'widget-url-link-action)
 
 (defun widget-url-link-action (widget &optional _event)
index db7185bc450aadfb696f337a1cc63525838f28eb..cc06b2e11cef23bdce2900f415b264166254cc8c 100644 (file)
@@ -564,7 +564,7 @@ define pgi
 end
 document pgi
 Pretty print glyph structure glyph[I].
-Takes one argument, a integer I.
+Takes one argument, an integer I.
 end
 
 define pgn
index 582b9268dbf83841432249a2063ca8fa9f9bc863..e756ba169dd5807bdca476e4f4e5c58426765868 100644 (file)
@@ -3980,7 +3980,7 @@ decode_coding_iso_2022 (struct coding_system *coding)
       /* Reset the invocation and designation status to the safest
         one; i.e. designate ASCII to the graphic register 0, and
         invoke that register to the graphic plane 0.  This typically
-        helps the case that an designation sequence for ASCII "ESC (
+        helps the case that a designation sequence for ASCII "ESC (
         B" is somehow broken (e.g. broken by a newline).  */
       CODING_ISO_INVOCATION (coding, 0) = 0;
       CODING_ISO_DESIGNATION (coding, 0) = charset_ascii;
index c561d01060c67a8f1382ff5f4b94e98e1bc7fda8..bccc3ac3992c349e97146485fea7bbd0e9a5d310 100644 (file)
@@ -3724,7 +3724,7 @@ setting of the remote datagram address.  When specified for a client
 process, the FAMILY, HOST, and SERVICE args are ignored.
 
 The format of ADDRESS depends on the address family:
-- An IPv4 address is represented as an vector of integers [A B C D P]
+- An IPv4 address is represented as a vector of integers [A B C D P]
 corresponding to numeric IP address A.B.C.D and port number P.
 - A local address is represented as a string with the address in the
 local address space.
index ac2d86f5922767b26a9ff2f94bdddc0d28b9042e..81c8f9b2919f4c1b292e63d3cc16386f687e37e6 100644 (file)
@@ -53,7 +53,7 @@ static char *current_font;
 static struct x_display_info *first_dpyinfo;
 static Lisp_Object current_tool_bar_style;
 
-/* Store an config changed event in to the event queue.  */
+/* Store a config changed event in to the event queue.  */
 
 static void
 store_config_changed_event (Lisp_Object arg, Lisp_Object display_name)