]> code.delx.au - gnu-emacs/commitdiff
Fix misspellings like "an unibyte buffer"
authorPaul Eggert <eggert@cs.ucla.edu>
Wed, 10 Dec 2014 00:26:46 +0000 (16:26 -0800)
committerPaul Eggert <eggert@cs.ucla.edu>
Wed, 10 Dec 2014 00:27:23 +0000 (16:27 -0800)
doc/misc/gnus-faq.texi
doc/misc/tramp.texi
lisp/gnus/mm-decode.el
lisp/gnus/nnweb.el
lisp/org/org.el
lisp/org/ox-ascii.el
src/ChangeLog.10
src/alloc.c
src/indent.c

index 83fff5e949747eccb8c8e986a4c5e0ff5080ada5..3e01fab75788b6fbf2752389b619d46fb424b53b 100644 (file)
@@ -1649,7 +1649,7 @@ aren't they and how to fix it?
 
 @subsubheading Answer
 
-The message-ID is an unique identifier for messages you
+The message-ID is a unique identifier for messages you
 send. To make it unique, Gnus need to know which machine
 name to put after the "@@". If the name of the machine
 where Gnus is running isn't suitable (it probably isn't
index 8eb25c690e14c20392b92c70fe42cb8aaf20dd29..62aa5c0e6704c09b19d0a0842835881a60f6426f 100644 (file)
@@ -2843,7 +2843,7 @@ uid=0(root) gid=0(root) groups=0(root)
 @cindex gdb
 @cindex perldb
 
-@file{gud.el} offers an unified interface to several symbolic
+@file{gud.el} offers a unified interface to several symbolic
 debuggers
 @ifset emacs
 @ifinfo
index cde0af036a569949028259b0bbfc4b495ca86768..f5b4d7cba881afe101e04b3ab817efc07160e09c 100644 (file)
@@ -647,7 +647,7 @@ MIME-Version header before proceeding."
          (unless from
            (setq from (mail-fetch-field "from")))
          ;; FIXME: In some circumstances, this code is running within
-         ;; an unibyte macro.  mail-extract-address-components
+         ;; a unibyte macro.  mail-extract-address-components
          ;; creates unibyte buffers. This `if', though not a perfect
          ;; solution, avoids most of them.
          (if from
index e909372e8a742c109ddcf3108d94961d8b5d0e89..6802484266de867e99273102edff428f8cf702c4 100644 (file)
@@ -438,7 +438,7 @@ Valid types include `google', `dejanews', and `gmane'.")
   t)
 
 (defun nnweb-google-identity (url)
-  "Return an unique identifier based on URL."
+  "Return a unique identifier based on URL."
   (if (string-match "selm=\\([^ &>]+\\)" url)
       (match-string 1 url)
     url))
index 30bb98d98ed2849fdcb3f8580319dd1d3ad3cc49..78536eb4120545de023655cc49ab77e97fa2a2e0 100644 (file)
@@ -20348,7 +20348,7 @@ This command does many different things, depending on context:
          (item
           ;; At an item: a double C-u set checkbox to "[-]"
           ;; unconditionally, whereas a single one will toggle its
-          ;; presence.  Without an universal argument, if the item
+          ;; presence.  Without a universal argument, if the item
           ;; has a checkbox, toggle it.  Otherwise repair the list.
           (let* ((box (org-element-property :checkbox context))
                  (struct (org-element-property :structure context))
index cd2a9af10acab9c55094cc6161e1a0969b5141fb..50a2011e2911ef5902cf1a88a98f4506093162fd 100644 (file)
@@ -185,7 +185,7 @@ original Org buffer at the same place."
   :package-version '(Org . "8.0")
   :type '(choice
          (const :tag "Replicate original spacing" nil)
-         (cons :tag "Set an uniform spacing"
+         (cons :tag "Set a uniform spacing"
                (integer :tag "Number of blank lines before contents")
                (integer :tag "Number of blank lines after contents"))))
 
index 1b77eaf580308a3e8f8882f646eeae0c02960107..b6646e797e3e58b6be1b97ed7ff6cfbe5b055f41 100644 (file)
 
        * fontset.c (syms_of_fontset): Setup Vfont_encoding_alist here.
 
-       * editfns.c (Fformat): Convert an unibyte char argument that is
+       * editfns.c (Fformat): Convert a unibyte char argument that is
        formatted by "%c" to multibyte if the total result must be a
        multibyte string.
 
index 1019c2af6ccd03135afb95d3ae02e84c5d9ec3b3..35a5ee2784ffd95b27db22eb4b0fb2a7f7386c59 100644 (file)
@@ -2226,7 +2226,7 @@ make_string (const char *contents, ptrdiff_t nbytes)
   return val;
 }
 
-/* Make an unibyte string from LENGTH bytes at CONTENTS.  */
+/* Make a unibyte string from LENGTH bytes at CONTENTS.  */
 
 Lisp_Object
 make_unibyte_string (const char *contents, ptrdiff_t length)
@@ -2295,7 +2295,7 @@ make_specified_string (const char *contents,
 }
 
 
-/* Return an unibyte Lisp_String set up to hold LENGTH characters
+/* Return a unibyte Lisp_String set up to hold LENGTH characters
    occupying LENGTH bytes.  */
 
 Lisp_Object
index e6b267a3891dbafe04ea41eb878fcf04f9bd4c99..04f5d6cfa4abae90c67a97a76b1779e76552a0ae 100644 (file)
@@ -439,7 +439,7 @@ current_column (void)
            /* With a display table entry, C is displayed as is, and
               not displayed as \NNN or as ^N.  If C is a single-byte
               character, it takes one column.  If C is multi-byte in
-              an unibyte buffer, it's translated to unibyte, so it
+              a unibyte buffer, it's translated to unibyte, so it
               also takes one column.  */
            ++col;
          else