[slime-cvs] CVS update: slime/slime.el

Helmut Eller heller at common-lisp.net
Mon May 24 16:10:51 UTC 2004


Update of /project/slime/cvsroot/slime
In directory common-lisp.net:/tmp/cvs-serv3295

Modified Files:
	slime.el 
Log Message:
(slime-input-complete-p): Return nil for unbalanced sexps starting
with quote ?', backquote ?`, or hash ?#.  C-j can be used if Emacs
gets the parsing wrong.

Date: Mon May 24 12:10:51 2004
Author: heller

Index: slime/slime.el
diff -u slime/slime.el:1.306 slime/slime.el:1.307
--- slime/slime.el:1.306	Sat May 22 07:20:42 2004
+++ slime/slime.el	Mon May 24 12:10:51 2004
@@ -424,7 +424,7 @@
   "Return t if the region from START to END contains a complete sexp."
   (save-excursion
     (goto-char start)
-    (cond ((looking-at "\\s *(")
+    (cond ((looking-at "\\s *['`#]?(")
            (ignore-errors
              (save-restriction
                (narrow-to-region start end)





More information about the slime-cvs mailing list