aboutsummaryrefslogtreecommitdiffhomepage
path: root/lego
diff options
context:
space:
mode:
authorGravatar David Aspinall <da@inf.ed.ac.uk>2003-02-24 10:38:01 +0000
committerGravatar David Aspinall <da@inf.ed.ac.uk>2003-02-24 10:38:01 +0000
commit3563de3849c59f7b97fc9406960629a7258c8a84 (patch)
tree70beb3cbb61c80e9e24365cf9448d30fc3d3fa53 /lego
parent031876435b4b287f17ff74dbbc4999c80b91161b (diff)
Fix some compile errors
Diffstat (limited to 'lego')
-rw-r--r--lego/lego.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lego/lego.el b/lego/lego.el
index 6a8b50d6..00a32319 100644
--- a/lego/lego.el
+++ b/lego/lego.el
@@ -350,11 +350,11 @@ Checks the width in the `proof-goals-buffer'"
(setq outline-heading-end-regexp lego-outline-heading-end-regexp)
;; tags
- (cond ((boundp 'tags-table-list)
+ (cond ((boundp 'tags-table-list) ;; GNU Emacs
(make-local-variable 'tags-table-list)
(setq tags-table-list (cons lego-tags tags-table-list))))
- (and (boundp 'tag-table-alist)
+ (and (boundp 'tag-table-alist) ;; XEmacs
(setq tag-table-alist
(append '(("\\.l$" . lego-tags)
("lego" . lego-tags))