diff options
author | Jose Antonio Ortega Ruiz <jao@gnu.org> | 2009-03-01 01:09:16 +0100 |
---|---|---|
committer | Jose Antonio Ortega Ruiz <jao@gnu.org> | 2009-03-01 01:09:16 +0100 |
commit | 85c8afb66c970003f8fe4155fae3f089aca3b346 (patch) | |
tree | 7b2d0ba9a32b32a9c34216a41ef9424af2880424 /elisp | |
parent | 40a36416f5a09a4941bb183a7fabc973ddfa0354 (diff) | |
download | geiser-85c8afb66c970003f8fe4155fae3f089aca3b346.tar.gz geiser-85c8afb66c970003f8fe4155fae3f089aca3b346.tar.bz2 |
Fix for autodoc when point in a rest formal arg in define.
Diffstat (limited to 'elisp')
-rw-r--r-- | elisp/geiser-syntax.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/elisp/geiser-syntax.el b/elisp/geiser-syntax.el index 8684f99..a41f152 100644 --- a/elisp/geiser-syntax.el +++ b/elisp/geiser-syntax.el @@ -89,7 +89,7 @@ (geiser-syntax--del-sexp -1) (insert "XXpointXX")) ((eq (char-after (point)) ?\() (geiser-syntax--del-sexp 1) (insert "XXpointXX"))) - (when (memq (char-after (1- (point))) (list ?@ ?, ?\' ?\` ?\#)) + (when (memq (char-after (1- (point))) (list ?. ?@ ?, ?\' ?\` ?\#)) (skip-syntax-backward "^-(") (delete-region (point) (point-max)) (insert "XXXpointXX")) |