diff options
author | Jose Antonio Ortega Ruiz <jao@gnu.org> | 2009-02-16 22:21:28 +0100 |
---|---|---|
committer | Jose Antonio Ortega Ruiz <jao@gnu.org> | 2009-02-16 22:21:28 +0100 |
commit | f574939e5db2f64eab21493bb70ac6605f76646f (patch) | |
tree | 4530983f1f38f2ada52a000e85e70879671feba3 /elisp/geiser-syntax.el | |
parent | dba34f8fdf4cf29703126abc498261ea410a9702 (diff) | |
download | geiser-f574939e5db2f64eab21493bb70ac6605f76646f.tar.gz geiser-f574939e5db2f64eab21493bb70ac6605f76646f.tar.bz2 |
New command to open module file.
Diffstat (limited to 'elisp/geiser-syntax.el')
-rw-r--r-- | elisp/geiser-syntax.el | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/elisp/geiser-syntax.el b/elisp/geiser-syntax.el index 1897898..6577152 100644 --- a/elisp/geiser-syntax.el +++ b/elisp/geiser-syntax.el @@ -39,9 +39,8 @@ (with-current-buffer buffer (save-excursion (goto-char (point-min)) - (if (re-search-forward geiser-syntax--module-definition-re nil t) - (match-string-no-properties 1) - "#f"))))) + (when (re-search-forward geiser-syntax--module-definition-re nil t) + (match-string-no-properties 1)))))) ;;; Indentation: |