# HG changeset patch # User Kenichi Handa # Date 888888939 0 # Node ID 58232432926298b2b0043e4655c0db879639884e # Parent 9b33c6a5b4dce9817eb94b723cc307a979987d81 (sref): Typo in doc-string fixed. diff -r 9b33c6a5b4dc -r 582324329262 lisp/subr.el --- 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)))))