Issue232

classification
Title indent-new-comment-line misbehaviour?
Type Module
Severity Platform
Keywords
explanation
process
These optional controls are only of interest to committers and tracker administrators.
Status new   Reason
Superseder   Submitted 2008-01-18.10:42:47
Priority   Assigned To
Nosy List  

Created on 2008-01-19.06:43:19 by oub, last changed 2008-01-19.06:43:19 by oub.

Messages
msg406 [hidden] ([hidden]) Date: 2008-01-19.06:43:19
  Message-ID: <87y7anl8ig.fsf@mat.ucm.es>
Hello

I used xemacs-21.4.19 mule -vanilla.

I added a comment via `lisp-indent-for-comment'
(defun textmarker-region (start end)  ;this is the comment
  (interactive "r")
  (xref-source-region start end)
  (xref-target-region start end))

however then indent-new-comment-line put the cursor

(defun textmarker-region (start end)  ;this is the comment
^
  (interactive "r")
  (xref-source-region start end)
  (xref-target-region start end))

INSTEAD of 
(defun textmarker-region (start end)  ;this is the comment
                                      ;^
  (interactive "r")
  (xref-source-region start end)
  (xref-target-region start end))

However when I added more text into the first comment line

(defun textmarker-region (start end)  ;this is the comment but we need
  (interactive "r")
  (xref-source-region start end)
  (xref-target-region start end))

and used fill-paragraph I obtained

(defun textmarker-region (start end)  ;this is the comment
                                      ;but we need
  (interactive "r")
  (xref-source-region start end)
  (xref-target-region start end))

Which is find surprising. Can somebody please clarify me that issue.

thanks

Uwe Brauer 

_______________________________________________
XEmacs-Beta mailing list
XEmacs-Beta@xemacs.org
http://calypso.tux.org/cgi-bin/mailman/listinfo/xemacs-beta
History
Date User Action Args
2008-01-19 06:43:19oubcreate