Skip to content

Commit

Permalink
Use Common Lisp style indenting for the IF-form.
Browse files Browse the repository at this point in the history
  • Loading branch information
arbv committed Jan 2, 2019
1 parent 6bc0e55 commit bcb7244
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Sys/load-sys2.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,9 @@
(let ((*package* (find-package :ide)))
(with-input-from-string (in "") ;; to not let it hang, as it calls INDENT-LINES
(let ((*standard-input* in))
(load-file (concatenate 'string ccl::*cormanlisp-directory* "Sys\\scmindent\\lispindent.lisp")))))
(load-file (concatenate 'string ccl::*cormanlisp-directory* "Sys\\scmindent\\lispindent.lisp"))))
;; use Common Lisp style indenting for the IF form
(setf (cdr (assoc "IF" ide::*lisp-keywords* :test #'string-equal)) -1))
(load-file "sys/code-indenter.lisp")
(load-file "sys/context-menu.lisp")
(load-file "sys/setf-expander.lisp")
Expand Down

0 comments on commit bcb7244

Please sign in to comment.