<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:syn="http://purl.org/rss/1.0/modules/syndication/" xmlns:admin="http://webns.net/mvcb/">
  <channel about="http://blog.gmane.org/gmane.emacs.pretest.bugs">
    <title>gmane.emacs.pretest.bugs</title>
    <link>http://blog.gmane.org/gmane.emacs.pretest.bugs</link>
    <description/>
    <syn:updatePeriod>hourly</syn:updatePeriod>
    <syn:updateFrequency>1</syn:updateFrequency>
    <syn:updateBase>1901-01-01T00:00+00:00</syn:updateBase>
    <items>
      <rdf:Seq>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.emacs.pretest.bugs/23254"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.emacs.pretest.bugs/23253"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.emacs.pretest.bugs/19526"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.emacs.pretest.bugs/19525"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.emacs.pretest.bugs/19524"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.emacs.pretest.bugs/19523"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.emacs.pretest.bugs/19522"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.emacs.pretest.bugs/19521"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.emacs.pretest.bugs/19520"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.emacs.pretest.bugs/19519"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.emacs.pretest.bugs/19518"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.emacs.pretest.bugs/19517"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.emacs.pretest.bugs/19516"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.emacs.pretest.bugs/19515"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.emacs.pretest.bugs/19514"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.emacs.pretest.bugs/19513"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.emacs.pretest.bugs/19512"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.emacs.pretest.bugs/19511"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.emacs.pretest.bugs/19510"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.emacs.pretest.bugs/19509"/>
      </rdf:Seq>
    </items>
    <image rdf:resource="http://gmane.org/img/gmane-25t.png"/>
    <textinput rdf:resource=""/>
  </channel>
  <image rdf:about="http://gmane.org/img/gmane-25t.png">
    <title>Gmane</title>
    <url>http://gmane.org/img/gmane-25t.png</url>
    <link>http://gmane.org</link>
  </image>
  <item rdf:about="http://permalink.gmane.org/gmane.emacs.pretest.bugs/23254">
    <title>bug#1200: Two more overlay display bugs</title>
    <link>http://permalink.gmane.org/gmane.emacs.pretest.bugs/23254</link>
    <description>Here are bugs that were reported a year ago
which I think should not be forgotten.

To: bug-gnu-emacs&lt; at &gt;gnu.org
From: Joe Wells &lt;jbw&lt; at &gt;macs.hw.ac.uk&gt;
Date: Sat, 20 Oct 2007 06:32:19 +0100
MIME-Version: 1.0
Content-Type: text/plain; charset=utf-8
Subject: two display bugs involving interactions between after-string and
display properties of adjacent overlays

Here are two more display bugs I found while trying to improve the
code in tex-fold.el in AUCTeX.

These bugs involve interactions between after-string and display
properties of adjacent overlays.

I'm assuming this macro in my reproduction code below:

  (defmacro test-in-fresh-buffer-and-window (&amp;rest body)
    `(progn
       (delete-other-windows)
       (kill-buffer (get-buffer-create "xyzzy"))
       (let ((xyzzy-buf (get-buffer-create "xyzzy")))
         (set-buffer xyzzy-buf)
         (display-buffer xyzzy-buf)
         ,&lt; at &gt;body
         )))

BUG #1:  An overlay's after-string property that would appear at the
end of the buffer is not displayed, if the same overlay also has a
display property and an immediately preceding overlay also has an
after-string property.  (Putting extra characters at the end of the
buffer works around this bug.)

Reproduce with this expression:

  (test-in-fresh-buffer-and-window
   (insert "AB")
   (let ((o1 (make-overlay 1 2))
         (o2 (make-overlay 2 3)))
     (overlay-put o1 'after-string "1")
     (overlay-put o2 'after-string "2")
     (overlay-put o2 'display "b")
     ))

The above expression should display ?A1b2?.
The above expression wrongly actually displays ?A1b?.

BUG #2:  An overlay's display property and after-string property are
not displayed if an immediately following overlay shares the same Lisp
string as its display property.  (Using two distinct display strings
with identical contents works around the bug.)

Reproduce with this expression:

  (test-in-fresh-buffer-and-window
   (insert "ABCD")
   (let ((o1 (make-overlay 2 3))
         (o2 (make-overlay 3 4))
         (s #1=" "))
     (overlay-put o1 'after-string "1")
     (overlay-put o1 'display #1#)
     (overlay-put o2 'display #1#)))

The above expression should display ?A 1 D?.
The above expression wrongly actually displays ?A D?.

I hope these bug reports are helpful.

Joe

======================================================================
In GNU Emacs 22.1.1 (i686-pc-linux-gnu, GTK+ Version 2.8.20)
 of 2007-06-27 on artemis
Windowing system distributor `The X.Org Foundation', version 11.0.70000000
configured using `configure  '--prefix=/home/jbw/local2' '--enable-debug' '--disable-nls' '--with-x-toolkit=gtk' 'CFLAGS=-O0 -g3 -ggdb''

Important settings:
  value of $LC_ALL: nil
  value of $LC_COLLATE: nil
  value of $LC_CTYPE: en_US.UTF-8
  value of $LC_MESSAGES: nil
  value of $LC_MONETARY: nil
  value of $LC_NUMERIC: nil
  value of $LC_TIME: jbw
  value of $LANG: nil
  locale-coding-system: utf-8
  default-enable-multibyte-characters: t

Minor modes in effect:
  TeX-source-specials-mode: t
  outline-minor-mode: t
  desktop-save-mode: t
  url-handler-mode: t
  tooltip-mode: t
  mouse-wheel-mode: t
  file-name-shadow-mode: t
  global-font-lock-mode: t
  font-lock-mode: t
  blink-cursor-mode: t
  unify-8859-on-encoding-mode: t
  utf-translate-cjk-mode: t
  auto-compression-mode: t
  temp-buffer-resize-mode: t
  size-indication-mode: t
  line-number-mode: t
  transient-mark-mode: t






</description>
    <dc:creator>Richard Stallman</dc:creator>
    <dc:date>2008-10-19T05:00:36</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.emacs.pretest.bugs/23253">
    <title>bug#1201: Another overlay display bug</title>
    <link>http://permalink.gmane.org/gmane.emacs.pretest.bugs/23253</link>
    <description>Here's another bug that was reported a year ago
which I think should not be forgotten.

From: Richard Stallman &lt;rms&lt; at &gt;gnu.org&gt;
Content-Type: text/plain; charset=ISO-8859-15
To: emacs-devel&lt; at &gt;gnu.org
Subject: Another overlay display bug
Reply-To: rms&lt; at &gt;gnu.org
Message-Id: &lt;E1IjVDM-0001BJ-AH&lt; at &gt;fencepost.gnu.org&gt;
Date: Mon, 10 Dec 2007 10:19:14 -0500

Would someone please fix this, then ack?

To: bug-gnu-emacs&lt; at &gt;gnu.org
From: Joe Wells &lt;jbw&lt; at &gt;macs.hw.ac.uk&gt;
Date: Sat, 20 Oct 2007 06:43:43 +0100
In-Reply-To: &lt;86k5pi9wrg.fsf&lt; at &gt;macs.hw.ac.uk&gt; (Joe Wells's message of "Sat\,
20 Oct 2007 06\:32\:19 +0100")
MIME-Version: 1.0
Content-Type: text/plain; charset=utf-8
Subject: Re: two display bugs involving interactions between after-string
and display properties of adjacent overlays

Joe Wells &lt;jbw&lt; at &gt;macs.hw.ac.uk&gt; writes:


Here is a third such bug.


Ditto.


Ditto.



BUG #3:  An overlay's after-string property is not displayed if an
immediately following overlay has the empty string as its display
property.

Reproduce with this expression:

  (test-in-fresh-buffer-and-window
   (insert "ABCD")
   (let ((o1 (make-overlay 2 3))
         (o2 (make-overlay 3 4)))
     (overlay-put o1 'after-string "1")
     (overlay-put o2 'display "")))

The above expression should display ?AB1D?.
The above expression wrongly actually displays ?ABD?.


Same details as in last message.

I hope this bug report is helpful.

</description>
    <dc:creator>Richard Stallman</dc:creator>
    <dc:date>2008-10-19T05:00:55</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.emacs.pretest.bugs/19526">
    <title>Re: suspend/fg excitement in *shell*</title>
    <link>http://permalink.gmane.org/gmane.emacs.pretest.bugs/19526</link>
    <description>

Outside Emacs suspending a su'ed bash works fine.
</description>
    <dc:creator>Sven Joachim</dc:creator>
    <dc:date>2007-08-13T13:27:24</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.emacs.pretest.bugs/19525">
    <title>Re: suspend/fg excitement in *shell*</title>
    <link>http://permalink.gmane.org/gmane.emacs.pretest.bugs/19525</link>
    <description>

How about outside Emacs?
</description>
    <dc:creator>Glenn Morris</dc:creator>
    <dc:date>2007-08-13T07:55:03</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.emacs.pretest.bugs/19524">
    <title>Re: suspend/fg excitement in *shell*</title>
    <link>http://permalink.gmane.org/gmane.emacs.pretest.bugs/19524</link>
    <description>

No, I can't. Surprisingly, you just repeating most of what you said
the first time word for word has not helped me to do so.
</description>
    <dc:creator>Glenn Morris</dc:creator>
    <dc:date>2007-08-13T07:54:05</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.emacs.pretest.bugs/19523">
    <title>Re: suspend/fg excitement in *shell*</title>
    <link>http://permalink.gmane.org/gmane.emacs.pretest.bugs/19523</link>
    <description>

Yes, I can reproduce this with Emacs 21.4.
</description>
    <dc:creator>Sven Joachim</dc:creator>
    <dc:date>2007-08-13T06:08:29</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.emacs.pretest.bugs/19522">
    <title>Re: suspend/fg excitement in *shell*</title>
    <link>http://permalink.gmane.org/gmane.emacs.pretest.bugs/19522</link>
    <description>    Also exiting an emacs that contains such shells still alive (merely
    sitting at their prompts), sends the signal to them to get wacko.

That sounds like a shell bug to me.

Does it happen with Emacs 21.4 too?
</description>
    <dc:creator>Richard Stallman</dc:creator>
    <dc:date>2007-08-13T05:00:37</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.emacs.pretest.bugs/19521">
    <title>Re: suspend/fg excitement in *shell*</title>
    <link>http://permalink.gmane.org/gmane.emacs.pretest.bugs/19521</link>
    <description>Also exiting an emacs that contains such shells still alive (merely
sitting at their prompts), sends the signal to them to get wacko.
</description>
    <dc:creator>jidanni&lt; at &gt;jidanni.org</dc:creator>
    <dc:date>2007-08-12T20:13:41</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.emacs.pretest.bugs/19520">
    <title>Re: suspend/fg excitement in *shell*</title>
    <link>http://permalink.gmane.org/gmane.emacs.pretest.bugs/19520</link>
    <description>SJ&gt; I have IGNOREEOF=2 in /root/.bashrc.

It turns out with greater IGNOREEOF's, and more "fg"'s, the sucker
heads straight for the HISTFILE where it proceeds to execute all the
commands there faster than you can kill(1) them. "A monster has taken
over my '*shell*' buffer and is sending root ^P^O&amp;'s or whatever it
takes to replay my HISTORY file faster than I can swat all it is
spawning!" Here I fool it with HISTFILE=/dev/null:

02:58 1 tmp$ su
Password:
root&lt; at &gt;jidanni2:/tmp# IGNOREEOF=11 HISTFILE=/dev/null
root&lt; at &gt;jidanni2:/tmp# suspend

[1]+  Stopped                 su
02:59 147 tmp$ fg
su
root&lt; at &gt;jidanni2:/tmp# Use "exit" to leave the shell.
root&lt; at &gt;jidanni2:/tmp#
[1]+  Stopped                 su
02:59 147 tmp$ fg
su
root&lt; at &gt;jidanni2:/tmp# bash: =/dev/null: No such file or directory
root&lt; at &gt;jidanni2:/tmp# bash: syntax error near unexpected token `('
root&lt; at &gt;jidanni2:/tmp# [1] 15423
root&lt; at &gt;jidanni2:/tmp# bash:\350\2600\322: command not found
root&lt; at &gt;jidanni2:/tmp#
</description>
    <dc:creator>jidanni&lt; at &gt;jidanni.org</dc:creator>
    <dc:date>2007-08-12T19:12:17</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.emacs.pretest.bugs/19519">
    <title>Re: GNU Emacsen 22.1.50 and 23.0.0 can't stop compilation</title>
    <link>http://permalink.gmane.org/gmane.emacs.pretest.bugs/19519</link>
    <description>The fix will be installed soon.
</description>
    <dc:creator>Richard Stallman</dc:creator>
    <dc:date>2007-08-12T17:56:15</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.emacs.pretest.bugs/19518">
    <title>Re: suspend/fg excitement in *shell*</title>
    <link>http://permalink.gmane.org/gmane.emacs.pretest.bugs/19518</link>
    <description>

I can reproduce this.  Actually, the shell gets an EOF from somewhere,
since on my system I get the message "Use 'exit' to leave the shell."
I have IGNOREEOF=2 in /root/.bashrc.

Regards,
        Sven
</description>
    <dc:creator>Sven Joachim</dc:creator>
    <dc:date>2007-08-12T17:54:37</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.emacs.pretest.bugs/19517">
    <title>Re: suspend/fg excitement in *shell*</title>
    <link>http://permalink.gmane.org/gmane.emacs.pretest.bugs/19517</link>
    <description>GM&gt; I cannot reproduce this.

At least you perhaps can reproduce in an emacs *shell* buffer:
---------------
jidanni&lt; at &gt;jidanni2:~$ su
Password: 
root&lt; at &gt;jidanni2:/tmp# suspend

[1]+  Stopped                 su
jidanni&lt; at &gt;jidanni2:~$ fg
su
root&lt; at &gt;jidanni2:/tmp# exit &lt;---I did not type "exit"!
jidanni&lt; at &gt;jidanni2:~$ jobs
jidanni&lt; at &gt;jidanni2:~$ 
----------------
Whereas in xterm one gets
...$ fg
su
root&lt; at &gt;jidanni2:/tmp#
----------------
i.e., without having the "exit" magically typed in for us ending the su session.
</description>
    <dc:creator>jidanni&lt; at &gt;jidanni.org</dc:creator>
    <dc:date>2007-08-12T15:13:46</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.emacs.pretest.bugs/19516">
    <title>Re: suspend/fg excitement in *shell*</title>
    <link>http://permalink.gmane.org/gmane.emacs.pretest.bugs/19516</link>
    <description>

I cannot reproduce this. If you want this investigating, please
provide a clear recipe showing the minimum emacs and shell
configurations needed to produce the problem.
</description>
    <dc:creator>Glenn Morris</dc:creator>
    <dc:date>2007-08-12T03:16:45</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.emacs.pretest.bugs/19515">
    <title>Re: calendar.el byte-compile failed</title>
    <link>http://permalink.gmane.org/gmane.emacs.pretest.bugs/19515</link>
    <description>

There have been no changes in lisp/calendar/ in the past two weeks. It
works for me. Perhaps there is a problem on your end?

</description>
    <dc:creator>Glenn Morris</dc:creator>
    <dc:date>2007-08-12T02:35:50</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.emacs.pretest.bugs/19514">
    <title>calendar.el byte-compile failed</title>
    <link>http://permalink.gmane.org/gmane.emacs.pretest.bugs/19514</link>
    <description>
Checking d:/emacs-gbk/lisp/calendar...
Compiling d:/emacs-gbk/lisp/calendar/calendar.el...

In toplevel form:
calendar/calendar.el:2215:1:Error: Symbol's function definition is void: i


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
c:/Emacs/etc/DEBUG for instructions.


In GNU Emacs 22.1.50.1 (i386-mingw-nt5.1.2600)
 of 2007-08-04 on BREPHOME
modified by Zhangwei &lt;id.brep&lt; at &gt;gmail.com&gt;.
Windowing system distributor `Microsoft Corp.', version 5.1.2600
configured using `configure --with-gcc (3.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: CHS
  locale-coding-system: cp936
  default-enable-multibyte-characters: t

Major mode: Emacs-Lisp

Minor modes in effect:
  shell-dirtrack-mode: t
  auto-image-file-mode: t
  display-time-mode: t
  show-paren-mode: t
  delete-selection-mode: t
  pc-selection-mode: t
  encoded-kbd-mode: t
  tooltip-mode: t
  mouse-wheel-mode: t
  file-name-shadow-mode: t
  global-font-lock-mode: t
  font-lock-mode: t
  blink-cursor-mode: t
  unify-8859-on-encoding-mode: t
  utf-translate-cjk-mode: t
  auto-compression-mode: t
  column-number-mode: t
  line-number-mode: t
  transient-mark-mode: t

Recent input:
C-v &lt;prior&gt; M-x b y t e - c o m &lt;tab&gt; &lt;return&gt; &lt;return&gt; 
C-x o C-v M-&lt; &lt;down&gt; &lt;down&gt; &lt;return&gt; C-x o C-x C-f 
C-g C-x o C-x 1 &lt;down&gt; &lt;down&gt; &lt;down&gt; &lt;down&gt; &lt;down&gt; 
&lt;down&gt; &lt;down&gt; &lt;down&gt; &lt;down&gt; &lt;down&gt; &lt;down&gt; &lt;down&gt; &lt;down&gt; 
&lt;down&gt; &lt;down&gt; &lt;down&gt; &lt;down&gt; &lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;up&gt; 
&lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;up&gt; 
&lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;up&gt; 
&lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;up&gt; 
&lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;up&gt; 
&lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;up&gt; 
&lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;up&gt; 
&lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;up&gt; 
&lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;up&gt; 
&lt;down&gt; &lt;down&gt; &lt;down&gt; &lt;down&gt; &lt;down&gt; &lt;down&gt; &lt;down&gt; &lt;down&gt; 
&lt;down&gt; &lt;down&gt; &lt;down&gt; &lt;down&gt; &lt;down&gt; &lt;down&gt; &lt;down&gt; &lt;down&gt; 
&lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;up&gt; 
&lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;up&gt; 
&lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;up&gt; 
&lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;down&gt; &lt;down&gt; &lt;down&gt; &lt;down&gt; &lt;down&gt; &lt;down&gt; 
&lt;down&gt; &lt;down&gt; &lt;down&gt; &lt;down&gt; &lt;down&gt; &lt;down&gt; &lt;down&gt; &lt;down&gt; 
&lt;down&gt; &lt;down&gt; &lt;down&gt; &lt;down&gt; &lt;down&gt; &lt;down&gt; &lt;down&gt; &lt;up&gt; 
&lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;up&gt; 
&lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;up&gt; 
&lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;up&gt; 
&lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;up&gt; 
&lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;up&gt; M-x b y t e 
- c o m - &lt;backspace&gt; &lt;tab&gt; &lt;return&gt; &lt;return&gt; M-x r 
e p r o t &lt;backspace&gt; &lt;backspace&gt; &lt;backspace&gt; o r t 
e &lt;backspace&gt; - e m &lt;tab&gt; &lt;return&gt;

Recent messages:
Compiling d:/emacs-gbk/lisp/calendar/calendar.el... (redraw-calendar)
Loading warnings...done
Mark set
Undo!
Compiling d:/emacs-gbk/lisp/calendar/cal-menu.el...done
Wrote d:/emacs-gbk/lisp/calendar/cal-menu.elc
Mark set [2 times]
Quit
Compiling d:/emacs-gbk/lisp/calendar/calendar.el... (redraw-calendar)
Loading emacsbug...done
</description>
    <dc:creator>Zhang Wei</dc:creator>
    <dc:date>2007-08-12T01:31:32</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.emacs.pretest.bugs/19513">
    <title>GNU Emacsen 22.1.50 and 23.0.0 can't stop compilation</title>
    <link>http://permalink.gmane.org/gmane.emacs.pretest.bugs/19513</link>
    <description>Hello!

The compilation in *compilation* can't neither be stopped by C-c C-k  
nor by the Compile menu entry to stop compilation. *Backtrace* buffer  
shows:

Debugger entered--Lisp error: (wrong-number-of-arguments (lambda nil  
(byte-code "\300\301!\207" [local-variable-p compilation-locs] 2)) 1)
  (lambda nil (byte-code "300\301!\207" [local-variable-p  
compilation-locs] 2))(#&lt;buffer *compilation*&gt;)
  compilation-find-buffer()
  kill-compilation()
  call-interactively(kill-compilation)

I first saw it a few days ago. CVS code is from from today, around  
16:00 UTC. All Emacsen launched with -Q.

In GNU Emacs 22.1.50.2 (powerpc-apple-darwin8.10.0, X toolkit, Xaw3d  
scroll bars)
  of 2007-08-11 on localhost
Windowing system distributor `The XFree86 Project, Inc', version  
11.0.40400000
configured using `configure  '--without-carbon' '--with-x' '--without- 
sound' '--without-pop' '--with-xpm' '--with-jpeg' '--with-tiff' '-- 
with-gif' '--with-png' '--with-x-toolkit=athena' '--enable- 
locallisppath=/Library/Application Support/Emacs/calendar22:/Library/ 
Application Support/Emacs/caml:/Library/Application Support/Emacs:/sw/ 
share/emacs21/site-lisp/elib' 'CFLAGS=-pipe -dead_strip -bind_at_load  
-fPIC -mcpu=7450 -mtune=7450 -fast -mpim-altivec -ftree-vectorize - 
foptimize-register-move -freorder-blocks -freorder-blocks-and- 
partition -fthread-jumps -fpeephole -fno-crossjumping' 'CPPFLAGS=-no- 
cpp-precomp -I/usr/include/openssl -I/sw/include/pango-1.0 -I/sw/lib/ 
freetype219/include -I/sw/lib/freetype219/include/freetype2 -I/sw/lib/ 
fontconfig2/include -I/sw/include/libpng12 -I/usr/local/include -I/sw/ 
include -idirafter /usr/X11R6/include' 'LDFLAGS=-dead_strip - 
bind_at_load -multiply_defined suppress -L/sw/lib/freetype219/lib -L/ 
sw/lib/fontconfig2/lib -L/sw/lib/ncurses -L/usr/local/lib -L/sw/lib - 
L/usr/local/lib''

Important settings:
   value of $LC_ALL: nil
   value of $LC_COLLATE: nil
   value of $LC_CTYPE: de_DE.UTF-8
   value of $LC_MESSAGES: nil
   value of $LC_MONETARY: nil
   value of $LC_NUMERIC: nil
   value of $LC_TIME: nil
   value of $LANG: de_DE.UTF-8
   locale-coding-system: utf-8
   default-enable-multibyte-characters: t

Major mode: Debugger

Minor modes in effect:
   show-paren-mode: t
   display-time-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
   unify-8859-on-encoding-mode: t
   utf-translate-cjk-mode: t
   auto-compression-mode: t
   line-number-mode: t
   transient-mark-mode: t


--
Mit friedvollen Grüßen

   Pete

                (This space left blank for technical reasons.)
</description>
    <dc:creator>Peter Dyballa</dc:creator>
    <dc:date>2007-08-11T17:58:53</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.emacs.pretest.bugs/19512">
    <title>Problem with cvs-update on lisp/emacs-lisp/cl-loaddefs.el</title>
    <link>http://permalink.gmane.org/gmane.emacs.pretest.bugs/19512</link>
    <description>Hello!

Since some weeks I can see in *cvs* buffer:

In directory lisp/emacs-lisp:
Message: cvs update: nonmergeable file needs merge
Message: cvs update: revision 1.6 from repository is now in lisp/ 
emacs-lisp/cl-loaddefs.el
Message: cvs update: file from working directory is now in .#cl- 
loaddefs.el.1.5
              Conflict                lisp/emacs-lisp/cl-loaddefs.el

When I check with diff or ls I get no difference:

pete 116 /\ diff lisp/emacs-lisp/cl-loaddefs.el lisp/emacs-lisp/.#cl- 
loaddefs.el.1.5
pete 117 /\ ls -l lisp/emacs-lisp/cl-loaddefs.el lisp/emacs- 
lisp/.#cl-loaddefs.el.1.5
-rw-r--r--   1 pete  admin  41962  4 Aug 13:41 lisp/emacs-lisp/.#cl- 
loaddefs.el.1.5
-rw-r--r--   1 pete  admin  41962 11 Aug 17:26 lisp/emacs-lisp/cl- 
loaddefs.el

In GNU Emacs 22.1.50.2 (powerpc-apple-darwin8.10.0, X toolkit, Xaw3d  
scroll bars)
  of 2007-08-04 on localhost
Windowing system distributor `The XFree86 Project, Inc', version  
11.0.40400000
configured using `configure  '--without-carbon' '--with-x' '--without- 
sound' '--without-pop' '--with-xpm' '--with-jpeg' '--with-tiff' '-- 
with-gif' '--with-png' '--with-x-toolkit=athena' '--enable- 
locallisppath=/Library/Application Support/Emacs/calendar22:/Library/ 
Application Support/Emacs/caml:/Library/Application Support/Emacs:/sw/ 
share/emacs21/site-lisp/elib' 'CFLAGS=-pipe -dead_strip -bind_at_load  
-fPIC -mcpu=7450 -mtune=7450 -fast -mpim-altivec -ftree-vectorize - 
foptimize-register-move -freorder-blocks -freorder-blocks-and- 
partition -fthread-jumps -fpeephole -fno-crossjumping' 'CPPFLAGS=-no- 
cpp-precomp -I/usr/include/openssl -I/sw/include/pango-1.0 -I/sw/lib/ 
freetype219/include -I/sw/lib/freetype219/include/freetype2 -I/sw/lib/ 
fontconfig2/include -I/sw/include/libpng12 -I/usr/local/include -I/sw/ 
include -idirafter /usr/X11R6/include' 'LDFLAGS=-dead_strip - 
bind_at_load -multiply_defined suppress -L/sw/lib/freetype219/lib -L/ 
sw/lib/fontconfig2/lib -L/sw/lib/ncurses -L/usr/local/lib -L/sw/lib - 
L/usr/local/lib''

Important settings:
   value of $LC_ALL: nil
   value of $LC_COLLATE: nil
   value of $LC_CTYPE: de_DE.UTF-8
   value of $LC_MESSAGES: nil
   value of $LC_MONETARY: nil
   value of $LC_NUMERIC: nil
   value of $LC_TIME: nil
   value of $LANG: de_DE.UTF-8
   locale-coding-system: utf-8
   default-enable-multibyte-characters: t

Major mode: Debugger

Minor modes in effect:
   show-paren-mode: t
   display-time-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
   unify-8859-on-encoding-mode: t
   utf-translate-cjk-mode: t
   auto-compression-mode: t
   line-number-mode: t
   transient-mark-mode: t


--
Greetings

   Pete

The box said "Use Windows 95 or better," so I got a Macintosh.
</description>
    <dc:creator>Peter Dyballa</dc:creator>
    <dc:date>2007-08-11T15:52:39</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.emacs.pretest.bugs/19511">
    <title>Re: tool-bar doesn't work on the trunk with (default) GTK build</title>
    <link>http://permalink.gmane.org/gmane.emacs.pretest.bugs/19511</link>
    <description>

Richard Stallman skrev:

Done.

Jan D.
</description>
    <dc:creator>Jan Djärv</dc:creator>
    <dc:date>2007-08-10T05:48:05</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.emacs.pretest.bugs/19510">
    <title>suspend/fg excitement in *shell*</title>
    <link>http://permalink.gmane.org/gmane.emacs.pretest.bugs/19510</link>
    <description>I notice in the *shell* buffer, suspend/fg acts funny.

sh-3.1$ su
Password: 
root&lt; at &gt;jidanni1:/tmp# suspend

[1]+  Stopped(SIGSTOP)        su
sh-3.1$ fg
su
root&lt; at &gt;jidanni1:/tmp# exit &lt;--I did not type "exit". God did for me
apparently.

I also notice that if I do the above experiment without doing
# mv .bash* /somewhere/other/than/root's/home/dir
first, apparently the .bash_history file starts getting munched, with
all kinds of wacko commands getting executed or something with
multiple kill(1)'s needed to stamp out the frenzy.

In GNU Emacs 22.1.1 (i486-pc-linux-gnu, X toolkit, Xaw3d scroll bars)
 of 2007-07-07 on raven, modified by Debian
</description>
    <dc:creator>Dan Jacobson</dc:creator>
    <dc:date>2007-08-09T23:46:57</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.emacs.pretest.bugs/19509">
    <title>Re: WoMan chokes on some manpages: Invalid search bound (wrong sideof point)</title>
    <link>http://permalink.gmane.org/gmane.emacs.pretest.bugs/19509</link>
    <description>

Tested with three manpages that used to trigger the error, all work
fine now.

Thank you. :-)
</description>
    <dc:creator>Sven Joachim</dc:creator>
    <dc:date>2007-08-08T20:12:09</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.emacs.pretest.bugs/19508">
    <title>Re: WoMan chokes on some manpages: Invalid search bound (wrong sideof point)</title>
    <link>http://permalink.gmane.org/gmane.emacs.pretest.bugs/19508</link>
    <description>

Can you confirm that the patch below fixes the problem for you?
I've installed it in the 22 branch,


        Stefan


--- man.el26 jui 2007 14:47:54 -04001.169
+++ man.el08 aoÃ» 2007 15:24:45 -0400
&lt; at &gt;&lt; at &gt; -975,7 +975,7 &lt; at &gt;&lt; at &gt;
        (Man-next-section 1)
        (point)))
  (goto-char (point-min))
- (point-max))))
+ nil)))
       (while (re-search-forward regexp end t)
 (make-text-button
  (match-beginning button-pos)
&lt; at &gt;&lt; at &gt; -1291,14 +1291,17 &lt; at &gt;&lt; at &gt;
 (defun Man-next-section (n)
   "Move point to Nth next section (default 1)."
   (interactive "p")
-  (let ((case-fold-search nil))
+  (let ((case-fold-search nil)
+        (start (point)))
     (if (looking-at Man-heading-regexp)
 (forward-line 1))
     (if (re-search-forward Man-heading-regexp (point-max) t n)
 (beginning-of-line)
       (goto-char (point-max))
       ;; The last line doesn't belong to any section.
-      (forward-line -1))))
+      (forward-line -1))
+    ;; But don't move back from the starting point.
+    (if (&lt; (point) start) (goto-char start))))
 
 (defun Man-previous-section (n)
   "Move point to Nth previous section (default 1)."
</description>
    <dc:creator>Stefan Monnier</dc:creator>
    <dc:date>2007-08-08T19:52:14</dc:date>
  </item>
  <textinput about="http://search.gmane.org/?group=$group=gmane.emacs.pretest.bugs">
    <title>Search Engine</title>
    <description>Search the mailing list at Gmane</description>
    <name>query</name>
    <link>http://search.gmane.org/?group=$group=gmane.emacs.pretest.bugs</link>
  </textinput>
</rdf:RDF>
