all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* uncomment-region problem in scheme mode
@ 2006-04-20 10:30 gento
  2006-04-20 18:25 ` Stefan Monnier
  0 siblings, 1 reply; 3+ messages in thread
From: gento @ 2006-04-20 10:30 UTC (permalink / raw)


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

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2006-04-21 11:25 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-04-20 10:30 uncomment-region problem in scheme mode gento
2006-04-20 18:25 ` Stefan Monnier
2006-04-21 11:25   ` Rupert Swarbrick

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.