This is the mail archive of the guile@cygnus.com mailing list for the guile project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

emacs 20 and Scheme mode



>If you do M-q to re-justify a comment, it will do what I consider "the
>right thing":

Funny, Emacs 19.34 works that way for me now... Ohh, I see why: in my
.emacs file:

;;;; Tweaks to Scheme mode.
(defun jimb-tweak-scheme-mode ()
  (define-key scheme-mode-map "\M-q" 'lisp-fill-paragraph))
(add-hook 'scheme-mode-hook 'jimb-tweak-scheme-mode)