comparison lispref/modes.texi @ 52978:1a5c50faf357

Replace @sc{foo} with @acronym{FOO}.
author Eli Zaretskii <eliz@gnu.org>
date Sun, 02 Nov 2003 06:29:59 +0000
parents 667459455d3c
children 7abfe409def6
comparison
equal deleted inserted replaced
52977:8af8c70252c1 52978:1a5c50faf357
421 @end group 421 @end group
422 422
423 @group 423 @group
424 ;; @r{Set syntax of chars up to 0 to class of chars that are} 424 ;; @r{Set syntax of chars up to 0 to class of chars that are}
425 ;; @r{part of symbol names but not words.} 425 ;; @r{part of symbol names but not words.}
426 ;; @r{(The number 0 is @code{48} in the @sc{ascii} character set.)} 426 ;; @r{(The number 0 is @code{48} in the @acronym{ASCII} character set.)}
427 (while (< i ?0) 427 (while (< i ?0)
428 (modify-syntax-entry i "_ " emacs-lisp-mode-syntax-table) 428 (modify-syntax-entry i "_ " emacs-lisp-mode-syntax-table)
429 (setq i (1+ i))) 429 (setq i (1+ i)))
430 @dots{} 430 @dots{}
431 @end group 431 @end group