Skip to content

Instantly share code, notes, and snippets.

@m2ym
Created January 11, 2011 08:28
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save m2ym/774198 to your computer and use it in GitHub Desktop.
Save m2ym/774198 to your computer and use it in GitHub Desktop.
cl-indent-patchesの設定(Emacs LispとCommon Lispの共存)
(when (require 'cl-indent-patches nil t)
(setq lisp-indent-function
(lambda (&rest args)
(apply (if (memq major-mode '(emacs-lisp-mode lisp-interaction-mode))
'lisp-indent-function
'common-lisp-indent-function)
args))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment