]> git.eshelyaron.com Git - emacs.git/commitdiff
Spelling fixes.
authorPaul Eggert <eggert@cs.ucla.edu>
Sat, 14 Apr 2012 05:10:55 +0000 (22:10 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Sat, 14 Apr 2012 05:10:55 +0000 (22:10 -0700)
* lisp/hexl.el (hexl-rulerize): Rename from hexl-rulerise, since
Emacs uses American spelling.

etc/publicsuffix.txt
lisp/ChangeLog
lisp/hexl.el
src/character.h

index 3eeddef13f0e634940c3ca67fc3d924d48cb4466..45cd95aca302f44c1f0a3f7e313561f1fc7631f2 100644 (file)
@@ -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
index 1974a7a5af1e605d0afea5c15da4caa1cdf8b6e5..c25fab9b619a9ba0bee0dcaba217cb73265e5d0a 100644 (file)
@@ -1,3 +1,9 @@
+2012-04-14  Paul Eggert  <eggert@cs.ucla.edu>
+
+       Spelling fixes.
+       * hexl.el (hexl-rulerize): Rename from hexl-rulerise, since
+       Emacs uses American spelling.
+
 2012-04-14  Juanma Barranquero  <lekktu@gmail.com>
 
        * emacs-lock.el (emacs-lock-locked-buffer-functions): New hook.
index 6c4d8d6dc34b45fe75c0f8f80c236d5c6bddfa69..bedcc6b10b9655fb43bb6e469c53ca54575c1186 100644 (file)
@@ -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
index a829def428dcb0514f9a5057d2c535fc0fc2b154..88de343b2289ce2e508102599f25c7e5e2d52a0e 100644 (file)
@@ -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.  */