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
+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.
(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))))
(lambda (bits)
(cons bits
(concat " 87654321 "
- (hexl-rulerise "00112233445566778899aabbccddeeff" bits)
+ (hexl-rulerize "00112233445566778899aabbccddeeff" bits)
" 0123456789abcdef")))
'(8 16 32 64)))
;; routines
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. */