unofficial mirror of bug-gnu-emacs@gnu.org 
 help / color / mirror / code / Atom feed
* bug#6201: 23.1; fill-region giving error
@ 2010-05-16 14:34 Uday S Reddy
  2010-05-19  3:52 ` Stefan Monnier
  0 siblings, 1 reply; 5+ messages in thread
From: Uday S Reddy @ 2010-05-16 14:34 UTC (permalink / raw)
  To: 6201; +Cc: U.S.Reddy, emacs_user

[-- Attachment #1: message body text --]
[-- Type: text/plain, Size: 2731 bytes --]

The fill-region function is going outside the region and giving an
error.  A  sample input and backtrace are attached.

Also attached is a patch to fill.el which fixes the problem.

Cheers,
Uday Reddy

----

If Emacs crashed, and you have the Emacs process in the gdb debugger,
please include the output from the following gdb commands:
    `bt full' and `xbacktrace'.
If you would like to further debug the crash, please read the file
d:/gnu/emacs-23.1/etc/DEBUG for instructions.


In GNU Emacs 23.1.1 (i386-mingw-nt5.1.2600)
 of 2009-07-30 on SOFT-MJASON
Windowing system distributor `Microsoft Corp.', version 5.1.2600
configured using `configure --with-gcc (4.4)'

Important settings:
  value of $LC_ALL: nil
  value of $LC_COLLATE: nil
  value of $LC_CTYPE: nil
  value of $LC_MESSAGES: nil
  value of $LC_MONETARY: nil
  value of $LC_NUMERIC: nil
  value of $LC_TIME: nil
  value of $LANG: ENU
  value of $XMODIFIERS: nil
  locale-coding-system: cp1252
  default-enable-multibyte-characters: t

Major mode: Editable Dired

Minor modes in effect:
  savehist-mode: t
  tooltip-mode: t
  mouse-wheel-mode: t
  menu-bar-mode: t
  file-name-shadow-mode: t
  global-font-lock-mode: t
  font-lock-mode: t
  blink-cursor-mode: t
  global-auto-composition-mode: t
  auto-composition-mode: t
  auto-encryption-mode: t
  line-number-mode: t
  transient-mark-mode: t

Recent input:
f i l l - r e g SPC <return> C-x u C-x u C-x u C-p 
C-SPC C-n C-n C-n C-n M-x f i l l - r e g SPC <return> 
C-x u C-x u C-x u C-x u C-x u C-x u C-x u C-x u q <switch-frame> 
<down-mouse-1> <mouse-movement> <mouse-1> C-x b <return> 
C-x b <return> C-x C-f f i l l . e SPC <return> C-s 
d e f u n SPC f i l l SPC - <backspace> <backspace> 
- r e g i o n C-s C-a <escape> C-x <switch-frame> <down-mouse-1> 
<mouse-movement> <mouse-1> C-a C-SPC C-n C-n C-n C-n 
M-x f i l l - r e g SPC <return> q C-x u M-x v m - 
s u b C-g C-x C-f <backspace> <return> g <up> <up> 
n M-x C-g s M-x w d i r e d - SPC <return> C-p C-p 
C-a C-x q v m - b u g - E l i - f i l l i n g <return> 
e m a c s - b u g - f i l l i n g C-g M-x w d i r e 
d C-g C-x q v m - b u g - E l i - f i l l i n g - r 
e p l i e s - 2 <return> e m a c s - b u g - f i l 
l i n g <return> SPC C-a C-x q <up> <up> C-n <backspace> 
<backspace> <return> <up> <up> <return> SPC SPC SPC 
SPC SPC SPC M-x s u b m i t - b u SPC SPC <backspace> 
<backspace> <backspace> <backspace> <backspace> <backspace> 
<backspace> <backspace> <backspace> r e p o r t SPC 
e m SPC SPC <return>

Recent messages:
Entering debugger...
Back to top level.
Undo in region!
Quit [2 times]
Press C-c C-c when finished or C-c ESC to abort changes
Quit [2 times]
Mark set
Replaced 1 occurrence
Mark set
Replaced 6 occurrences



[-- Attachment #2: sample buffer that gives an error --]
[-- Type: text/plain, Size: 201 bytes --]

-*- mail -*-

> talks will be either Monday & Tuesday Sept. 13 & 14 or Sept 20 & 21?
> There will be ~10 talks so it would likely be over two days.
> 
>  
> 
> NB: 
> 
> Wed. Sept 1 - classes start
> 

[-- Attachment #3: error backtrace --]
[-- Type: text/plain, Size: 690 bytes --]

Debugger entered--Lisp error: (error "Invalid search bound (wrong side of point)")
  re-search-forward("\\([.?!][]\"'\x201d\x201d)}]*\\($\\|[ \x00a0]$\\|	\\|[ \x00a0][ \x00a0]\\)\\|[\x3002\xff0e\xff1f\xff01\x3002\xff0e\xff1f\xff01\x3002\xff0e\xff1f\xff01\x3002\xff0e\xff1f\xff01]+\\)[ \x00a0	\n]*$" #<marker (moves after insertion) at 159 in vm-bug-Eli-filling-replies.txt> t)
  fill-delete-newlines(161 #<marker (moves after insertion) at 159 in vm-bug-Eli-filling-replies.txt> left nil nil)
  fill-region-as-paragraph(159 156 nil nil)
  fill-region(15 156 nil)
  call-interactively(fill-region t nil)
  execute-extended-command(nil)
  call-interactively(execute-extended-command nil nil)

[-- Attachment #4: patch for fill.el --]
[-- Type: text/plain, Size: 597 bytes --]

*** fill.el	Sun Jun 21 12:38:06 2009
--- fill-modified.el	Sun May 16 15:11:00 2010
***************
*** 1036,1042 ****
  	  (fill-forward-paragraph -1))
  	(if (< (point) beg)
  	    (goto-char beg))
! 	(if (>= (point) initial)
  	    (setq fill-pfx
  		  (fill-region-as-paragraph (point) end justify nosqueeze))
  	  (goto-char end))))
--- 1036,1042 ----
  	  (fill-forward-paragraph -1))
  	(if (< (point) beg)
  	    (goto-char beg))
! 	(if (and (>= (point) initial) (< (point) end))
  	    (setq fill-pfx
  		  (fill-region-as-paragraph (point) end justify nosqueeze))
  	  (goto-char end))))

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

* Re: bug#6201: 23.1; fill-region giving error
       [not found] <mailman.7.1274021814.647.bug-gnu-emacs@gnu.org>
@ 2010-05-18 20:31 ` emacs user
  0 siblings, 0 replies; 5+ messages in thread
From: emacs user @ 2010-05-18 20:31 UTC (permalink / raw)
  To: bug-gnu-emacs

On May 16, 5:34 pm, Uday S Reddy wrote:
> The fill-region function is going outside the region and giving an
> error.  A  sample input and backtrace are attached.
>
> Also attached is a patch to fill.el which fixes the problem.
>
>
> In GNU Emacs 23.1.1 (i386-mingw-nt5.1.2600)

for whatever it's worth, this bug also exists in gnu emacs 24.0.50


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

* bug#6201: 23.1; fill-region giving error
  2010-05-16 14:34 bug#6201: 23.1; fill-region giving error Uday S Reddy
@ 2010-05-19  3:52 ` Stefan Monnier
  2010-05-20 19:45   ` emacs user
  0 siblings, 1 reply; 5+ messages in thread
From: Stefan Monnier @ 2010-05-19  3:52 UTC (permalink / raw)
  To: Uday S Reddy; +Cc: emacs_user, 6201

> The fill-region function is going outside the region and giving an
> error.  A  sample input and backtrace are attached.
> Also attached is a patch to fill.el which fixes the problem.

Thanks.  The patch looked good, so I installed it,


        Stefan





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

* bug#6201: 23.1; fill-region giving error
  2010-05-19  3:52 ` Stefan Monnier
@ 2010-05-20 19:45   ` emacs user
  2010-05-21 20:21     ` Stefan Monnier
  0 siblings, 1 reply; 5+ messages in thread
From: emacs user @ 2010-05-20 19:45 UTC (permalink / raw)
  To: monnier; +Cc: 6201



----------------------------------------
> From: monnier@
>
>> The fill-region function is going outside the region and giving an
>> error. A sample input and backtrace are attached.
>> Also attached is a patch to fill.el which fixes the problem.
>
> Thanks. The patch looked good, so I installed it,
>
>
> Stefan

thanks stefan...  will this be applied to gnu emacs 24.0.xx at some point as well?  cheers, E
 		 	   		  
_________________________________________________________________
The New Busy is not the old busy. Search, chat and e-mail from your inbox.
http://www.windowslive.com/campaign/thenewbusy?ocid=PID28326::T:WLMTAGL:ON:WL:en-US:WM_HMP:042010_3




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

* bug#6201: 23.1; fill-region giving error
  2010-05-20 19:45   ` emacs user
@ 2010-05-21 20:21     ` Stefan Monnier
  0 siblings, 0 replies; 5+ messages in thread
From: Stefan Monnier @ 2010-05-21 20:21 UTC (permalink / raw)
  To: emacs user; +Cc: 6201

>>> The fill-region function is going outside the region and giving an
>>> error. A sample input and backtrace are attached.
>>> Also attached is a patch to fill.el which fixes the problem.
>> Thanks. The patch looked good, so I installed it,

> thanks stefan...  will this be applied to gnu emacs 24.0.xx at some
> point as well?  cheers, E

Yes, all patches installed on the emacs-23 will find their way on the
trunk next time someone (typically yours truly) does the merge.


        Stefan





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

end of thread, other threads:[~2010-05-21 20:21 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-05-16 14:34 bug#6201: 23.1; fill-region giving error Uday S Reddy
2010-05-19  3:52 ` Stefan Monnier
2010-05-20 19:45   ` emacs user
2010-05-21 20:21     ` Stefan Monnier
     [not found] <mailman.7.1274021814.647.bug-gnu-emacs@gnu.org>
2010-05-18 20:31 ` emacs user

Code repositories for project(s) associated with this public inbox

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

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).