We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6bc0e55 commit bcb7244Copy full SHA for bcb7244
Sys/load-sys2.lisp
@@ -85,7 +85,9 @@
85
(let ((*package* (find-package :ide)))
86
(with-input-from-string (in "") ;; to not let it hang, as it calls INDENT-LINES
87
(let ((*standard-input* in))
88
- (load-file (concatenate 'string ccl::*cormanlisp-directory* "Sys\\scmindent\\lispindent.lisp")))))
+ (load-file (concatenate 'string ccl::*cormanlisp-directory* "Sys\\scmindent\\lispindent.lisp"))))
89
+ ;; use Common Lisp style indenting for the IF form
90
+ (setf (cdr (assoc "IF" ide::*lisp-keywords* :test #'string-equal)) -1))
91
(load-file "sys/code-indenter.lisp")
92
(load-file "sys/context-menu.lisp")
93
(load-file "sys/setf-expander.lisp")
0 commit comments