comparison man/lispref/modes.texi @ 398:74fd4e045ea6 r21-2-29

Import from CVS: tag r21-2-29
author cvs
date Mon, 13 Aug 2007 11:13:30 +0200
parents 6240c7796c7a
children 501cfd01ee6d
comparison
equal deleted inserted replaced
397:f4aeb21a5bad 398:74fd4e045ea6
328 @end group 328 @end group
329 329
330 @group 330 @group
331 ;; @r{Set syntax of chars up to 0 to class of chars that are} 331 ;; @r{Set syntax of chars up to 0 to class of chars that are}
332 ;; @r{part of symbol names but not words.} 332 ;; @r{part of symbol names but not words.}
333 ;; @r{(The number 0 is @code{48} in the @sc{ASCII} character set.)} 333 ;; @r{(The number 0 is @code{48} in the @sc{ascii} character set.)}
334 (while (< i ?0) 334 (while (< i ?0)
335 (modify-syntax-entry i "_ " emacs-lisp-mode-syntax-table) 335 (modify-syntax-entry i "_ " emacs-lisp-mode-syntax-table)
336 (setq i (1+ i))) 336 (setq i (1+ i)))
337 @dots{} 337 @dots{}
338 @end group 338 @end group