Skip to content

Commit

Permalink
(std11-parse-ascii-token): Allow non-ASCII characters in comments.
Browse files Browse the repository at this point in the history
  • Loading branch information
morioka committed Jul 13, 1997
1 parent 629644a commit 2f5a717
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions std11-parse.el
Expand Up @@ -162,12 +162,12 @@
(let (token itl parsed token-value)
(while (and lal
(setq token (car lal))
(if (and (setq token-value (cdr token))
(find-non-ascii-charset-string token-value)
)
(setq token nil)
(std11-ignored-token-p token)
))
(or (std11-ignored-token-p token)
(if (and (setq token-value (cdr token))
(find-non-ascii-charset-string token-value)
)
(setq token nil)
)))
(setq lal (cdr lal))
(setq itl (cons token itl))
)
Expand Down

0 comments on commit 2f5a717

Please sign in to comment.