diff options
author | Kenichi Handa <handa@m17n.org> | 1998-03-03 01:35:39 +0000 |
---|---|---|
committer | Kenichi Handa <handa@m17n.org> | 1998-03-03 01:35:39 +0000 |
commit | 70701902816a3f05aaca7e9acb5aa65e337aa122 (patch) | |
tree | 93311c94c219ad1a4182e9446924de8f23a76c3f /lisp/subr.el | |
parent | b4e187e2ce2f6ae9715c89691061e924b15daa9e (diff) | |
download | emacs-70701902816a3f05aaca7e9acb5aa65e337aa122.tar.gz |
(sref): Typo in doc-string fixed.
Diffstat (limited to 'lisp/subr.el')
-rw-r--r-- | lisp/subr.el | 4 |
1 files changed, 2 insertions, 2 deletions
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))))) |