[gnus git] branch master updated: m0-5-57-g703b7ff =1= parse-time.el (parse-time-tokenize): Comment fix
Katsumi Yamaoka <[email protected]>
| Newsgroups | gmane.emacs.gnus.cvs |
|---|---|
| Message-ID | <[email protected]> |
via 703b7ff576c0c0a1631a88c826b24fbbd98b3da1 (commit)
from 206e383b9779521052d9ac3f98c9acfe415275c1 (commit)
- Log -----------------------------------------------------------------
commit 703b7ff576c0c0a1631a88c826b24fbbd98b3da1
Author: Stefan Monnier <[email protected]>
Date: Thu Jul 12 00:14:11 2012 +0000
parse-time.el (parse-time-tokenize): Comment fix
diff --git a/lisp/parse-time.el b/lisp/parse-time.el
index afaf1eb..9c97696 100644
--- a/lisp/parse-time.el
+++ b/lisp/parse-time.el
@@ -112,11 +112,11 @@
(index 0)
(c nil))
(while (< index end)
- (while (and (< index end) ;skip invalid characters
+ (while (and (< index end) ;Skip invalid characters.
(not (setq c (parse-time-string-chars (aref string index)))))
(incf index))
(setq start index all-digits (eq c ?0))
- (while (and (< (incf index) end) ;scan valid characters
+ (while (and (< (incf index) end) ;Scan valid characters.
(setq c (parse-time-string-chars (aref string index))))
(setq all-digits (and all-digits (eq c ?0))))
(if (<= index end)
-----------------------------------------------------------------------
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we listed those
revisions in full, above.
Summary of changes:
lisp/parse-time.el | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Gnus Project".
The branch, master has been updated
hooks/post-receive
--
Gnus Project