[slime-cvs] CVS slime
CVS User heller
heller at common-lisp.net
Wed Dec 7 18:02:03 UTC 2011
Update of /project/slime/cvsroot/slime
In directory tiger.common-lisp.net:/tmp/cvs-serv1034
Modified Files:
ChangeLog slime.el
Log Message:
* slime.el (slime-batch-test): Forgot to rename slime-run-one-test
to slime-run-test here.
(slime-net-connect): Remove coding-system argument.
(slime-xref-insert-recompilation-flags): Use insert-char instead
of (dotimes (i ..) (insert " " ..)) to avoid the compiler warning.
([test] break, slime-forward-sexp): Use _i in dotimes.
--- /project/slime/cvsroot/slime/ChangeLog 2011/12/07 15:10:10 1.2273
+++ /project/slime/cvsroot/slime/ChangeLog 2011/12/07 18:02:03 1.2274
@@ -1,3 +1,12 @@
+2011-12-07 Helmut Eller <heller at common-lisp.net>
+
+ * slime.el (slime-batch-test): Forgot to rename slime-run-one-test
+ to slime-run-test here.
+ (slime-net-connect): Remove coding-system argument.
+ (slime-xref-insert-recompilation-flags): Use insert-char instead
+ of (dotimes (i ..) (insert " " ..)) to avoid the compiler warning.
+ ([test] break, slime-forward-sexp): Use _i in dotimes.
+
2011-12-07 Stas Boukarev <stassats at gmail.com>
* doc/.cvsignore: Aadd html.tgz
--- /project/slime/cvsroot/slime/slime.el 2011/12/06 18:57:34 1.1385
+++ /project/slime/cvsroot/slime/slime.el 2011/12/07 18:02:03 1.1386
@@ -1202,12 +1202,9 @@
(y-or-n-p "Close old connections first? "))
(slime-disconnect-all))
(message "Connecting to Swank on port %S.." port)
- (let ((coding-system (or coding-system slime-net-coding-system)))
- (slime-check-coding-system coding-system)
- (message "Connecting to Swank on port %S.." port)
- (let* ((process (slime-net-connect host port coding-system))
- (slime-dispatching-connection process))
- (slime-setup-connection process))))
+ (let* ((process (slime-net-connect host port))
+ (slime-dispatching-connection process))
+ (slime-setup-connection process)))
;; FIXME: seems redundant
(defun slime-start-and-init (options fun)
@@ -1505,7 +1502,7 @@
(file-error nil)))
;;; Interface
-(defun slime-net-connect (host port coding-system)
+(defun slime-net-connect (host port)
"Establish a connection with a CL."
(let* ((inhibit-quit nil)
(proc (open-network-stream "SLIME Lisp" nil host port))
@@ -4973,9 +4970,7 @@
(slime-xref-dspec-at-point))
until (equal dspec-at-point dspec))
(end-of-line) ; skip old status information.
- (dotimes (i (- max-column (current-column)))
- (insert " "))
- (insert " ")
+ (insert-char ?\ (1+ (- max-column (current-column))))
(insert (format "[%s]"
(case result
((t) :success)
@@ -7483,7 +7478,7 @@
(slime-sync-to-top-level 5)
(switch-to-buffer "*scratch*")
(let* ((slime-randomize-test-order (when randomize (random t) t))
- (failed-tests (cond (test-name (slime-run-one-test test-name))
+ (failed-tests (cond (test-name (slime-run-test test-name))
(t (slime-run-tests)))))
(with-current-buffer slime-test-buffer-name
(slime-delete-hidden-outline-text)
@@ -8286,7 +8281,7 @@
(unless (= i 0)
(swank::sleep-for 1))
,exp)))))
- (dotimes (i times)
+ (dotimes (_i times)
(slime-wait-condition "Debugger visible"
(lambda ()
(and (slime-sldb-level= 1)
@@ -8592,7 +8587,7 @@
(defun slime-forward-sexp (&optional count)
"Like `forward-sexp', but understands reader-conditionals (#- and #+),
and skips comments."
- (dotimes (i (or count 1))
+ (dotimes (_i (or count 1))
(slime-forward-cruft)
(forward-sexp)))
More information about the slime-cvs
mailing list