aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Eggert <[email protected]>2012-04-13 22:10:55 -0700
committerPaul Eggert <[email protected]>2012-04-13 22:10:55 -0700
commit5ae255c7e9a2bd1ac594afe99fb24e9a0091d414 (patch)
tree02a5850b735899fb0d8eb33281a1d4fa85f65eea
parentd5e6342ed5e408014019c478ce16a47a2aad418b (diff)
Spelling fixes.
* lisp/hexl.el (hexl-rulerize): Rename from hexl-rulerise, since Emacs uses American spelling.
-rw-r--r--etc/publicsuffix.txt2
-rw-r--r--lisp/ChangeLog6
-rw-r--r--lisp/hexl.el4
-rw-r--r--src/character.h2
4 files changed, 10 insertions, 4 deletions
diff --git a/etc/publicsuffix.txt b/etc/publicsuffix.txt
index 3eeddef13f..45cd95aca3 100644
--- a/etc/publicsuffix.txt
+++ b/etc/publicsuffix.txt
@@ -3601,7 +3601,7 @@ turystyka.pl
6bone.pl
art.pl
mbone.pl
-// Government domains (administred by ippt.gov.pl)
+// Government domains (administered by ippt.gov.pl)
gov.pl
uw.gov.pl
um.gov.pl
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 1974a7a5af..c25fab9b61 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,9 @@
+2012-04-14 Paul Eggert <[email protected]>
+
+ Spelling fixes.
+ * hexl.el (hexl-rulerize): Rename from hexl-rulerise, since
+ Emacs uses American spelling.
+
2012-04-14 Juanma Barranquero <[email protected]>
* emacs-lock.el (emacs-lock-locked-buffer-functions): New hook.
diff --git a/lisp/hexl.el b/lisp/hexl.el
index 6c4d8d6dc3..bedcc6b10b 100644
--- a/lisp/hexl.el
+++ b/lisp/hexl.el
@@ -222,7 +222,7 @@ as that will override any bit grouping options set here."
(2 'hexl-ascii-region t t)))
"Font lock keywords used in `hexl-mode'.")
-(defun hexl-rulerise (string bits)
+(defun hexl-rulerize (string bits)
(let ((size (/ bits 4)) (strlen (length string)) (pos 0) (ruler ""))
(while (< pos strlen)
(setq ruler (concat ruler " " (substring string pos (+ pos size))))
@@ -234,7 +234,7 @@ as that will override any bit grouping options set here."
(lambda (bits)
(cons bits
(concat " 87654321 "
- (hexl-rulerise "00112233445566778899aabbccddeeff" bits)
+ (hexl-rulerize "00112233445566778899aabbccddeeff" bits)
" 0123456789abcdef")))
'(8 16 32 64)))
;; routines
diff --git a/src/character.h b/src/character.h
index a829def428..88de343b22 100644
--- a/src/character.h
+++ b/src/character.h
@@ -316,7 +316,7 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
Note: This macro returns the actual length of the character's
multibyte sequence as it is stored in a buffer or string. The
character it returns might have a different codepoint that has a
- different multibyte sequence of a different legth, due to possible
+ different multibyte sequence of a different length, due to possible
unification of CJK characters inside string_char. Therefore do NOT
assume that the length returned by this macro is identical to the
length of the multibyte sequence of the character it returns. */