From: Kenichi Handa Date: Tue, 3 Mar 1998 01:35:39 +0000 (+0000) Subject: (sref): Typo in doc-string fixed. X-Git-Tag: emacs-20.3~2035 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=70701902816a3f05aaca7e9acb5aa65e337aa122;p=emacs.git (sref): Typo in doc-string fixed. --- diff --git a/lisp/subr.el b/lisp/subr.el index 7f763633dfc..2d55e682d3a 100644 --- a/lisp/subr.el +++ b/lisp/subr.el @@ -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)))))