emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] master cc857dd: Fix misspellings like "an unibyte buffer"


From: Paul Eggert
Subject: [Emacs-diffs] master cc857dd: Fix misspellings like "an unibyte buffer"
Date: Wed, 10 Dec 2014 00:27:32 +0000

branch: master
commit cc857dd0db0fad257747134bdbd8318a21d12cab
Author: Paul Eggert <address@hidden>
Commit: Paul Eggert <address@hidden>

    Fix misspellings like "an unibyte buffer"
---
 doc/misc/gnus-faq.texi |    2 +-
 doc/misc/tramp.texi    |    2 +-
 lisp/gnus/mm-decode.el |    2 +-
 lisp/gnus/nnweb.el     |    2 +-
 lisp/org/org.el        |    2 +-
 lisp/org/ox-ascii.el   |    2 +-
 src/ChangeLog.10       |    2 +-
 src/alloc.c            |    4 ++--
 src/indent.c           |    2 +-
 9 files changed, 10 insertions(+), 10 deletions(-)

diff --git a/doc/misc/gnus-faq.texi b/doc/misc/gnus-faq.texi
index 83fff5e..3e01fab 100644
--- a/doc/misc/gnus-faq.texi
+++ b/doc/misc/gnus-faq.texi
@@ -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
diff --git a/doc/misc/tramp.texi b/doc/misc/tramp.texi
index 8eb25c6..62aa5c0 100644
--- a/doc/misc/tramp.texi
+++ b/doc/misc/tramp.texi
@@ -2843,7 +2843,7 @@ uid=0(root) gid=0(root) groups=0(root)
 @cindex gdb
 @cindex perldb
 
address@hidden offers an unified interface to several symbolic
address@hidden offers a unified interface to several symbolic
 debuggers
 @ifset emacs
 @ifinfo
diff --git a/lisp/gnus/mm-decode.el b/lisp/gnus/mm-decode.el
index cde0af0..f5b4d7c 100644
--- a/lisp/gnus/mm-decode.el
+++ b/lisp/gnus/mm-decode.el
@@ -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
diff --git a/lisp/gnus/nnweb.el b/lisp/gnus/nnweb.el
index e909372..6802484 100644
--- a/lisp/gnus/nnweb.el
+++ b/lisp/gnus/nnweb.el
@@ -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))
diff --git a/lisp/org/org.el b/lisp/org/org.el
index 30bb98d..78536eb 100644
--- a/lisp/org/org.el
+++ b/lisp/org/org.el
@@ -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))
diff --git a/lisp/org/ox-ascii.el b/lisp/org/ox-ascii.el
index cd2a9af..50a2011 100644
--- a/lisp/org/ox-ascii.el
+++ b/lisp/org/ox-ascii.el
@@ -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"))))
 
diff --git a/src/ChangeLog.10 b/src/ChangeLog.10
index 1b77eaf..b6646e7 100644
--- a/src/ChangeLog.10
+++ b/src/ChangeLog.10
@@ -20769,7 +20769,7 @@
 
        * 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.
 
diff --git a/src/alloc.c b/src/alloc.c
index 1019c2a..35a5ee2 100644
--- a/src/alloc.c
+++ b/src/alloc.c
@@ -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
diff --git a/src/indent.c b/src/indent.c
index e6b267a..04f5d6c 100644
--- a/src/indent.c
+++ b/src/indent.c
@@ -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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]