diff options
author | Jose Antonio Ortega Ruiz <jao@gnu.org> | 2013-03-01 04:24:21 +0100 |
---|---|---|
committer | Jose Antonio Ortega Ruiz <jao@gnu.org> | 2013-03-01 04:24:21 +0100 |
commit | 4d06d7e13c2b1873b2de2c85333faa6b3d4b93dc (patch) | |
tree | 30df26976dc45f08c633a71dfb9966e83f7a9047 /elisp/geiser-impl.el | |
parent | 8569220b3aa3312e9de80c95a28a36e7adb750c4 (diff) | |
download | geiser-guile-4d06d7e13c2b1873b2de2c85333faa6b3d4b93dc.tar.gz geiser-guile-4d06d7e13c2b1873b2de2c85333faa6b3d4b93dc.tar.bz2 |
Configurable keyword case sensitivity
By default, keywords are now not fontified in Scheme buffers unless
they have the correct (lower) case. This behaviour can be altered by
new, per-implementation customization variables.
Thanks to Diogo F. S. Ramos for pointing this out.
Diffstat (limited to 'elisp/geiser-impl.el')
-rw-r--r-- | elisp/geiser-impl.el | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/elisp/geiser-impl.el b/elisp/geiser-impl.el index 9e03251..38d22fa 100644 --- a/elisp/geiser-impl.el +++ b/elisp/geiser-impl.el @@ -1,6 +1,6 @@ ;; geiser-impl.el -- generic support for scheme implementations -;; Copyright (C) 2009, 2010, 2012 Jose Antonio Ortega Ruiz +;; Copyright (C) 2009, 2010, 2012, 2013 Jose Antonio Ortega Ruiz ;; This program is free software; you can redistribute it and/or ;; modify it under the terms of the Modified BSD License. You should @@ -200,7 +200,8 @@ Here's how a typical call to this macro looks like: (display-error geiser-guile--display-error) (display-help) (check-buffer geiser-guile--guess) - (keywords geiser-guile--keywords)) + (keywords geiser-guile--keywords) + (case-sensitive geiser-guile-case-sensitive-p)) This macro also defines a runner function (run-NAME) and a switcher (switch-to-NAME), and provides geiser-NAME." |