]> git.eshelyaron.com Git - emacs.git/commitdiff
(nslookup-font-lock-keywords, ftp-font-lock-keywords,
authorPeter Breton <pbreton@attbi.com>
Thu, 5 Oct 2000 02:48:41 +0000 (02:48 +0000)
committerPeter Breton <pbreton@attbi.com>
Thu, 5 Oct 2000 02:48:41 +0000 (02:48 +0000)
smbclient-font-lock-keywords):  Ignore value of window-system;
always define the keywords

lisp/ChangeLog
lisp/net/net-utils.el

index 2b3b3477d4dd3bae4063dbbeca7a2b914f527a76..d6a76f4116a6cfcd48e9d19e46a64fdc7e803720 100644 (file)
@@ -1,3 +1,9 @@
+2000-10-04  Peter Breton  <pbreton@ne.mediaone.net>
+
+       * net/net-utils.el (nslookup-font-lock-keywords)
+       (ftp-font-lock-keywords, smbclient-font-lock-keywords): 
+       Ignore the value of wqindow-system; always define keywords
+
 2000-10-05  Kenichi Handa  <handa@etl.go.jp>
 
        * startup.el (fancy-splash-screens): Remove the code for
index 1f05b3f12bf984e0ca30a0c04c68d48f83fcc515..9f98b7f809180a98aa1d5b3d462f34a8c16909f7 100644 (file)
@@ -3,7 +3,7 @@
 ;; Author:  Peter Breton <pbreton@cs.umb.edu>
 ;; Created: Sun Mar 16 1997
 ;; Keywords: network communications
-;; Time-stamp: <2000-10-04 01:32:16 pbreton>
+;; Time-stamp: <2000-10-04 22:39:05 pbreton>
 
 ;; This file is part of GNU Emacs.
 
@@ -227,54 +227,51 @@ These options can be used to limit how many ICMP packets are emitted."
 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
 
 (defconst nslookup-font-lock-keywords
-  (and window-system
-       (progn
-        (require 'font-lock)
-        (list
-         (list nslookup-prompt-regexp 0 font-lock-reference-face)
-         (list "^[A-Za-z0-9 _]+:"     0 font-lock-type-face)
-         (list "\\<\\(SOA\\|NS\\|MX\\|A\\|CNAME\\)\\>"
-               1 font-lock-keyword-face)
-         ;; Dotted quads
-         (list
-          (mapconcat 'identity
-                     (make-list 4 "[0-9]+")
-                     "\\.")
-          0 font-lock-variable-name-face)
-         ;; Host names
-         (list
-          (let ((host-expression "[-A-Za-z0-9]+"))
-            (concat
-             (mapconcat 'identity
-                        (make-list 2 host-expression)
-                        "\\.")
-             "\\(\\." host-expression "\\)*")
-            )
-          0 font-lock-variable-name-face)
-         )))
-        "Expressions to font-lock for nslookup.")
+  (progn
+    (require 'font-lock)
+    (list
+     (list nslookup-prompt-regexp 0 font-lock-reference-face)
+     (list "^[A-Za-z0-9 _]+:"     0 font-lock-type-face)
+     (list "\\<\\(SOA\\|NS\\|MX\\|A\\|CNAME\\)\\>"
+          1 font-lock-keyword-face)
+     ;; Dotted quads
+     (list
+      (mapconcat 'identity
+                (make-list 4 "[0-9]+")
+                "\\.")
+      0 font-lock-variable-name-face)
+     ;; Host names
+     (list
+      (let ((host-expression "[-A-Za-z0-9]+"))
+       (concat
+        (mapconcat 'identity
+                   (make-list 2 host-expression)
+                   "\\.")
+        "\\(\\." host-expression "\\)*")
+       )
+      0 font-lock-variable-name-face)
+     ))
+  "Expressions to font-lock for nslookup.")
 
 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
 ;; FTP goodies
 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
 
 (defconst ftp-font-lock-keywords
-  (and window-system
-       (progn
-        (require 'font-lock)
-        (list
-         (list ftp-prompt-regexp 0 font-lock-reference-face)))))
+  (progn
+    (require 'font-lock)
+    (list
+     (list ftp-prompt-regexp 0 font-lock-reference-face))))
 
 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
 ;; smbclient goodies
 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
 
 (defconst smbclient-font-lock-keywords
-  (and window-system
-       (progn
-        (require 'font-lock)
-        (list
-         (list smbclient-prompt-regexp 0 font-lock-reference-face)))))
+  (progn
+    (require 'font-lock)
+    (list
+     (list smbclient-prompt-regexp 0 font-lock-reference-face))))
 
 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
 ;; Utility functions