emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] /srv/bzr/emacs/emacs-24 r107902: Spelling fixes.


From: Paul Eggert
Subject: [Emacs-diffs] /srv/bzr/emacs/emacs-24 r107902: Spelling fixes.
Date: Fri, 02 Nov 2012 02:00:00 -0000
User-agent: Bazaar (2.5.0)

------------------------------------------------------------
revno: 107902
committer: Paul Eggert <address@hidden>
branch nick: trunk
timestamp: Fri 2012-04-13 22:10:55 -0700
message:
  Spelling fixes.
  
  * lisp/hexl.el (hexl-rulerize): Rename from hexl-rulerise, since
  Emacs uses American spelling.
modified:
  etc/publicsuffix.txt
  lisp/ChangeLog
  lisp/hexl.el
  src/character.h
=== modified file 'etc/publicsuffix.txt'
--- a/etc/publicsuffix.txt      2012-04-10 01:57:45 +0000
+++ b/etc/publicsuffix.txt      2012-04-14 05:10:55 +0000
@@ -3601,7 +3601,7 @@
 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

=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2012-04-14 03:11:18 +0000
+++ b/lisp/ChangeLog    2012-04-14 05:10:55 +0000
@@ -1,3 +1,9 @@
+2012-04-14  Paul Eggert  <address@hidden>
+
+       Spelling fixes.
+       * hexl.el (hexl-rulerize): Rename from hexl-rulerise, since
+       Emacs uses American spelling.
+
 2012-04-14  Juanma Barranquero  <address@hidden>
 
        * emacs-lock.el (emacs-lock-locked-buffer-functions): New hook.

=== modified file 'lisp/hexl.el'
--- a/lisp/hexl.el      2012-04-13 22:31:23 +0000
+++ b/lisp/hexl.el      2012-04-14 05:10:55 +0000
@@ -222,7 +222,7 @@
      (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 @@
    (lambda (bits)
      (cons bits
            (concat " 87654321  "
-                   (hexl-rulerise "00112233445566778899aabbccddeeff" bits)
+                   (hexl-rulerize "00112233445566778899aabbccddeeff" bits)
                    "  0123456789abcdef")))
    '(8 16 32 64)))
 ;; routines

=== modified file 'src/character.h'
--- a/src/character.h   2012-04-06 13:10:30 +0000
+++ b/src/character.h   2012-04-14 05:10:55 +0000
@@ -316,7 +316,7 @@
    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.  */


reply via email to

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