diff options
author | Jose Antonio Ortega Ruiz <jao@gnu.org> | 2009-03-01 00:41:08 +0100 |
---|---|---|
committer | Jose Antonio Ortega Ruiz <jao@gnu.org> | 2009-03-01 00:41:08 +0100 |
commit | 40a36416f5a09a4941bb183a7fabc973ddfa0354 (patch) | |
tree | 0c65ff889d68aeecd1c7362e72bf6778a55d849b /elisp/geiser-autodoc.el | |
parent | ee0d020521b46652f98278e46e61adb606b195d5 (diff) | |
download | geiser-40a36416f5a09a4941bb183a7fabc973ddfa0354.tar.gz geiser-40a36416f5a09a4941bb183a7fabc973ddfa0354.tar.bz2 |
Miscellaneous little fixes.
Diffstat (limited to 'elisp/geiser-autodoc.el')
-rw-r--r-- | elisp/geiser-autodoc.el | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/elisp/geiser-autodoc.el b/elisp/geiser-autodoc.el index 4c936cf..63eb3b9 100644 --- a/elisp/geiser-autodoc.el +++ b/elisp/geiser-autodoc.el @@ -88,7 +88,10 @@ when `geiser-autodoc-display-module-p' is on." (let ((p (point)) (str (format "%s" (if (eq arg '\#:rest) "." arg)))) (insert str) - (when (listp arg) (replace-regexp "(quote \\(.*\\))" "'\\1" nil p (point))) + (when (listp arg) + (save-excursion + (replace-regexp "(quote \\(.*\\))" "'\\1" nil p (point)) + (replace-string "nil" "()" t p (point)))) (when (= current pos) (put-text-property p (point) 'face 'geiser-font-lock-autodoc-current-arg)))) |