comparison lisp/term/internal.el @ 49599:5ade352e8d1c

Trailing whitespace deleted.
author Juanma Barranquero <lekktu@gmail.com>
date Tue, 04 Feb 2003 13:30:45 +0000
parents 33d53d287ee4
children 695cf19ef79e d7ddb3e565de
comparison
equal deleted inserted replaced
49598:0d8b17d428b5 49599:5ade352e8d1c
624 ;; (In the multibyte mode, the appropriate tables are prepared 624 ;; (In the multibyte mode, the appropriate tables are prepared
625 ;; elsewhere, since multibyte Emacs uses normal MULE character sets, 625 ;; elsewhere, since multibyte Emacs uses normal MULE character sets,
626 ;; which are supported on all platforms.) 626 ;; which are supported on all platforms.)
627 (let* ((i 128) 627 (let* ((i 128)
628 (modify (function 628 (modify (function
629 (lambda (ch sy) 629 (lambda (ch sy)
630 (modify-syntax-entry ch sy text-mode-syntax-table) 630 (modify-syntax-entry ch sy text-mode-syntax-table)
631 (if (boundp 'tex-mode-syntax-table) 631 (if (boundp 'tex-mode-syntax-table)
632 (modify-syntax-entry ch sy tex-mode-syntax-table)) 632 (modify-syntax-entry ch sy tex-mode-syntax-table))
633 (modify-syntax-entry ch sy (standard-syntax-table)) 633 (modify-syntax-entry ch sy (standard-syntax-table))
634 ))) 634 )))