help-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

uncomment-region problem in scheme mode


From: gento
Subject: uncomment-region problem in scheme mode
Date: 20 Apr 2006 03:30:51 -0700
User-agent: G2/0.2

I'm using
"GNU Emacs 21.2.1 (i686-pc-cygwin, X toolkit) of 2004-03-22 on cm-test"
and working on a scheme file "test.scm" which contains the lines

(display " hello 1" outport)
; (display " hello 2" outport)
(display " hello 3" outport)


If I run M-x comment-region on the above region I get


; (display " hello 1" outport)
; ; (display " hello 2" outport)
; (display " hello 3" outport)


The execution of  M-x uncomment-region on the above region yields


(display " hello 1" outport)
(display " hello 2" outport)
(display " hello 3" outport)


whereas I would like to have


(display " hello 1" outport)
; (display " hello 2" outport)
(display " hello 3" outport)


I think this behaviour is related to the emacs scheme mode, since it
doesn't occur with files with no extension. 


I appreciate any help



reply via email to

[Prev in Thread] Current Thread [Next in Thread]