Mercurial > emacs
comparison lisp/textmodes/tex-mode.el @ 2598:2189edb30955
Removed spurious comment (obsoleted by ;;;###autoload).
author | Eric S. Raymond <esr@snark.thyrsus.com> |
---|---|
date | Wed, 28 Apr 1993 17:08:14 +0000 |
parents | b0a1846fe3b8 |
children | d95acb2243f9 |
comparison
equal
deleted
inserted
replaced
2597:562d2dea4f05 | 2598:2189edb30955 |
---|---|
211 (define-key tex-mode-map "\C-c\C-o" 'tex-latex-block) | 211 (define-key tex-mode-map "\C-c\C-o" 'tex-latex-block) |
212 (define-key tex-mode-map "\C-c\C-e" 'tex-close-latex-block)) | 212 (define-key tex-mode-map "\C-c\C-e" 'tex-close-latex-block)) |
213 | 213 |
214 (defvar tex-shell-map nil | 214 (defvar tex-shell-map nil |
215 "Keymap for the tex-shell. A comint-mode-map with a few additions.") | 215 "Keymap for the tex-shell. A comint-mode-map with a few additions.") |
216 | |
217 ;(defalias 'TeX-mode 'tex-mode) ;in loaddefs. | |
218 | 216 |
219 (defvar compare-windows-whitespace nil) ; Pacify the byte-compiler | 217 (defvar compare-windows-whitespace nil) ; Pacify the byte-compiler |
220 | 218 |
221 ;;; This would be a lot simpler if we just used a regexp search, | 219 ;;; This would be a lot simpler if we just used a regexp search, |
222 ;;; but then it would be too slow. | 220 ;;; but then it would be too slow. |
243 'slitex-mode | 241 'slitex-mode |
244 'latex-mode) | 242 'latex-mode) |
245 'plain-tex-mode)))) | 243 'plain-tex-mode)))) |
246 (if mode (funcall mode) | 244 (if mode (funcall mode) |
247 (funcall tex-default-mode)))) | 245 (funcall tex-default-mode)))) |
246 | |
248 ;;;###autoload | 247 ;;;###autoload |
249 (defalias 'TeX-mode 'tex-mode) | 248 (defalias 'TeX-mode 'tex-mode) |
250 ;;;###autoload | 249 ;;;###autoload |
251 (defalias 'LaTeX-mode 'latex-mode) | 250 (defalias 'LaTeX-mode 'latex-mode) |
252 | 251 |