comparison lisp/gnus/ecomplete.el @ 110986:e0f89e89ed02

Fix typos in docstrings, comments and ChangeLogs. * lisp/composite.el (compose-region): * src/ccl.c (Fccl_execute_on_string): Fix typo in docstring.
author Juanma Barranquero <lekktu@gmail.com>
date Tue, 12 Oct 2010 17:16:57 +0200
parents 1d1d5d9bd884
children 376148b31b5e
comparison
equal deleted inserted replaced
110985:9a99465a61b9 110986:e0f89e89ed02
145 (goto-char (point-min)) 145 (goto-char (point-min))
146 (forward-line line) 146 (forward-line line)
147 (save-restriction 147 (save-restriction
148 (narrow-to-region (point) (point-at-eol)) 148 (narrow-to-region (point) (point-at-eol))
149 (while (not (eobp)) 149 (while (not (eobp))
150 ;; Put the 'region face on any charactes on this line that 150 ;; Put the 'region face on any characters on this line that
151 ;; aren't already highlighted. 151 ;; aren't already highlighted.
152 (unless (get-text-property (point) 'face) 152 (unless (get-text-property (point) 'face)
153 (put-text-property (point) (1+ (point)) 'face 'highlight)) 153 (put-text-property (point) (1+ (point)) 'face 'highlight))
154 (forward-char 1))) 154 (forward-char 1)))
155 (buffer-string))) 155 (buffer-string)))