summaryrefslogtreecommitdiff
path: root/module/language/elisp
diff options
context:
space:
mode:
authorAndy Wingo <wingo@pobox.com>2008-09-09 06:56:06 +0200
committerAndy Wingo <wingo@pobox.com>2008-09-09 06:58:25 +0200
commit1a1a10d3a5bfed3ef93b5e6b7cd91954892639e7 (patch)
tree80e25768946a31ae5d7080e28de97b00a5aa43e2 /module/language/elisp
parent13906f976ec3122edbd85868a4aff154a1dbfd0c (diff)
downloadguile-1a1a10d3a5bfed3ef93b5e6b7cd91954892639e7.tar.gz
use #:keywords in module/*.scm, not :keywords
* module/system/base/syntax.scm (keywords): Don't enable :keywords, it breaks code that may assume that ':foo is a symbol, like boot-9. * module/*.scm: Don't use :keywords, use #:keywords. The user can decide if she wants #:keywords in their .guile, and :keywords might make us compile modules differently.
Diffstat (limited to 'module/language/elisp')
-rw-r--r--module/language/elisp/spec.scm4
1 files changed, 2 insertions, 2 deletions
diff --git a/module/language/elisp/spec.scm b/module/language/elisp/spec.scm
index c43328c22..a35c44112 100644
--- a/module/language/elisp/spec.scm
+++ b/module/language/elisp/spec.scm
@@ -20,8 +20,8 @@
;;; Code:
(define-module (lang elisp spec)
- :use-module (system lang language)
- :export (elisp))
+ #:use-module (system lang language)
+ #:export (elisp))
;;;