]> git.eshelyaron.com Git - emacs.git/commitdiff
(sref): Typo in doc-string fixed.
authorKenichi Handa <handa@m17n.org>
Tue, 3 Mar 1998 01:35:39 +0000 (01:35 +0000)
committerKenichi Handa <handa@m17n.org>
Tue, 3 Mar 1998 01:35:39 +0000 (01:35 +0000)
lisp/subr.el

index 7f763633dfcffb316c6b63a56a0737bb4cda2307..2d55e682d3a83d82eea8e0f1554450b2c0c2922d 100644 (file)
@@ -512,8 +512,8 @@ as returned by the `event-start' and `event-end' functions."
 (defalias 'define-function 'defalias)
 
 (defun sref (string byte-index)
-  "Obsolete function returning a characater in STRING at BYTE-INDEX.
-Please convert your programs to use `aref' witha character-base index."
+  "Obsolete function returning a character in STRING at BYTE-INDEX.
+Please convert your programs to use `aref' with character-base index."
   (let ((byte 0) (char 0))
     (while (< byte byte-index)
       (setq byte (+ byte (char-bytes (aref string byte)))))