summaryrefslogtreecommitdiff
path: root/lisp
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2014-12-09 16:26:46 -0800
committerPaul Eggert <eggert@cs.ucla.edu>2014-12-09 16:27:23 -0800
commitcc857dd0db0fad257747134bdbd8318a21d12cab (patch)
tree28f4f2f61569bce9c3002a1d948edf080dbabe2d /lisp
parentc54f8f8aebe27089a1f84d9fc24b37c93762a7e5 (diff)
downloademacs-cc857dd0db0fad257747134bdbd8318a21d12cab.tar.gz
Fix misspellings like "an unibyte buffer"
Diffstat (limited to 'lisp')
-rw-r--r--lisp/gnus/mm-decode.el2
-rw-r--r--lisp/gnus/nnweb.el2
-rw-r--r--lisp/org/org.el2
-rw-r--r--lisp/org/ox-ascii.el2
4 files changed, 4 insertions, 4 deletions
diff --git a/lisp/gnus/mm-decode.el b/lisp/gnus/mm-decode.el
index cde0af036a5..f5b4d7cba88 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 e909372e8a7..6802484266d 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 30bb98d98ed..78536eb4120 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 cd2a9af10ac..50a2011e291 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"))))