Trying to call undefined slime-update-system-indentation
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
Slime |
Confirmed
|
Undecided
|
Unassigned |
Bug Description
slime.el tries to do:
(if (boundp 'common-
;; A table provided by slime-cl-indent.el.
But this fails because `common-
It would be safer to change that way:
--- a/slime.el
+++ b/slime.el
@@ -7046,7 +7046,7 @@ is setup, unless the user already set one explicitly."
(let ((symbol (intern (car info)))
(indent (slime-
- (if (boundp 'common-
+ (if (fboundp 'slime-
;; A table provided by slime-cl-indent.el.
;; Does the symbol have an indentation value that we set?
Changed in slime: | |
status: | New → Confirmed |