Mercurial > emacs
changeset 21039:582324329262
(sref): Typo in doc-string fixed.
author | Kenichi Handa <handa@m17n.org> |
---|---|
date | Tue, 03 Mar 1998 01:35:39 +0000 |
parents | 9b33c6a5b4dc |
children | 290a1c16d25d |
files | lisp/subr.el |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/subr.el Tue Mar 03 01:31:11 1998 +0000 +++ b/lisp/subr.el Tue Mar 03 01:35:39 1998 +0000 @@ -512,8 +512,8 @@ (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)))))