diff options
| author | Carsten Dominik | 2005-11-16 13:42:58 +0000 |
|---|---|---|
| committer | Carsten Dominik | 2005-11-16 13:42:58 +0000 |
| commit | a3d6972f26d7a7e095e055ea34b4da6c6bbad754 (patch) | |
| tree | 00b6a0c2c206d76112ecaf61c6bdfc4dd23e6a1a | |
| parent | c194b021cc2da808d4db3f99001765c007f75dd0 (diff) | |
| download | emacs-a3d6972f26d7a7e095e055ea34b4da6c6bbad754.tar.gz emacs-a3d6972f26d7a7e095e055ea34b4da6c6bbad754.zip | |
(reftex-use-fonts): removed the check for
window-system, to allow fonts on tty.
| -rw-r--r-- | lisp/textmodes/reftex.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/textmodes/reftex.el b/lisp/textmodes/reftex.el index 8d0aa4bf80d..386f19f1797 100644 --- a/lisp/textmodes/reftex.el +++ b/lisp/textmodes/reftex.el | |||
| @@ -2262,7 +2262,7 @@ IGNORE-WORDS List of words which should be removed from the string." | |||
| 2262 | 2262 | ||
| 2263 | (defun reftex-use-fonts () | 2263 | (defun reftex-use-fonts () |
| 2264 | ;; Return t if we can and want to use fonts. | 2264 | ;; Return t if we can and want to use fonts. |
| 2265 | (and window-system | 2265 | (and ; window-system |
| 2266 | reftex-use-fonts | 2266 | reftex-use-fonts |
| 2267 | (featurep 'font-lock))) | 2267 | (featurep 'font-lock))) |
| 2268 | 2268 | ||