diff options
author | Egbert Eich <eich@suse.de> | 2004-01-29 08:09:08 +0000 |
---|---|---|
committer | Egbert Eich <eich@suse.de> | 2004-01-29 08:09:08 +0000 |
commit | 71331fcaaca36aadf8f4857526a4ca2162b71df4 (patch) | |
tree | b9ca74dfb23bc8337199ac32ba3d7ffb236c23a3 /lisp/modules/syntax.lsp | |
parent | 39a948f028c2e3cb3083d7d2f847acbd27facc23 (diff) |
Importing vendor version xf86-012804-2330 on Thu Jan 29 00:06:33 PST 2004xf86-012804-2330
Diffstat (limited to 'lisp/modules/syntax.lsp')
-rw-r--r-- | lisp/modules/syntax.lsp | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/lisp/modules/syntax.lsp b/lisp/modules/syntax.lsp index c297235..835e41d 100644 --- a/lisp/modules/syntax.lsp +++ b/lisp/modules/syntax.lsp @@ -27,7 +27,7 @@ ;; Author: Paulo César Pereira de Andrade ;; ;; -;; $XFree86: xc/programs/xedit/lisp/modules/syntax.lsp,v 1.11 2003/01/16 03:50:46 paulo Exp $ +;; $XFree86: xc/programs/xedit/lisp/modules/syntax.lsp,v 1.12 2004/01/08 21:29:11 paulo Exp $ ;; (provide "syntax") @@ -126,60 +126,60 @@ is used. ;; sources in different programming languages. (defsynprop *prop-default* "default" - :font "*courier-medium-r*12*" + :font "*courier-medium-r*-12-*" :foreground "black") (defsynprop *prop-keyword* "keyword" - :font "*courier-bold-r*12*" + :font "*courier-bold-r*-12-*" :foreground "gray12") (defsynprop *prop-number* "number" - :font "*courier-bold-r*12*" + :font "*courier-bold-r*-12-*" :foreground "OrangeRed3") (defsynprop *prop-string* "string" - :font "*lucidatypewriter-medium-r*12*" + :font "*lucidatypewriter-medium-r*-12-*" :foreground "RoyalBlue2") (defsynprop *prop-constant* "constant" - :font "*lucidatypewriter-medium-r*12*" + :font "*lucidatypewriter-medium-r*-12-*" :foreground "VioletRed3") (defsynprop *prop-comment* "comment" - :font "*courier-medium-o*12*" + :font "*courier-medium-o*-12-*" :foreground "SlateBlue3") (defsynprop *prop-preprocessor* "preprocessor" - :font "*courier-medium-r*12*" + :font "*courier-medium-r*-12-*" :foreground "green4") (defsynprop *prop-punctuation* "punctuation" - :font "*courier-bold-r*12*" + :font "*courier-bold-r*-12-*" :foreground "gray12") ;; Control characters, not always errors... (defsynprop *prop-control* "control" - :font "*courier-bold-r*12*" + :font "*courier-bold-r*-12-*" :foreground "yellow2" :background "red3") (defsynprop *prop-error* "error" - :font "*new century schoolbook-bold*24*" + :font "*new century schoolbook-bold*-24-*" :foreground "yellow" :background "red") (defsynprop *prop-annotation* "annotation" - :font "*courier-medium-r*12*" + :font "*courier-medium-r*-12-*" :foreground "black" :background "PaleGreen") |