<?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://comments.gmane.org/gmane.emacs.pretest.bugs/23254"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.emacs.pretest.bugs/23253"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.emacs.pretest.bugs/19514"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.emacs.pretest.bugs/19513"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.emacs.pretest.bugs/19512"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.emacs.pretest.bugs/19510"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.emacs.pretest.bugs/19507"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.emacs.pretest.bugs/19499"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.emacs.pretest.bugs/19489"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.emacs.pretest.bugs/19481"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.emacs.pretest.bugs/19474"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.emacs.pretest.bugs/19470"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.emacs.pretest.bugs/19467"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.emacs.pretest.bugs/19466"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.emacs.pretest.bugs/19456"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.emacs.pretest.bugs/19451"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.emacs.pretest.bugs/19448"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.emacs.pretest.bugs/19436"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.emacs.pretest.bugs/19432"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.emacs.pretest.bugs/19430"/>
      </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://comments.gmane.org/gmane.emacs.pretest.bugs/23254">
    <title>bug#1200: Two more overlay display bugs</title>
    <link>http://comments.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://comments.gmane.org/gmane.emacs.pretest.bugs/23253">
    <title>bug#1201: Another overlay display bug</title>
    <link>http://comments.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://comments.gmane.org/gmane.emacs.pretest.bugs/19514">
    <title>calendar.el byte-compile failed</title>
    <link>http://comments.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://comments.gmane.org/gmane.emacs.pretest.bugs/19513">
    <title>GNU Emacsen 22.1.50 and 23.0.0 can't stop compilation</title>
    <link>http://comments.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://comments.gmane.org/gmane.emacs.pretest.bugs/19512">
    <title>Problem with cvs-update on lisp/emacs-lisp/cl-loaddefs.el</title>
    <link>http://comments.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://comments.gmane.org/gmane.emacs.pretest.bugs/19510">
    <title>suspend/fg excitement in *shell*</title>
    <link>http://comments.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://comments.gmane.org/gmane.emacs.pretest.bugs/19507">
    <title>WoMan chokes on some manpages: Invalid search bound (wrong side ofpoint)</title>
    <link>http://comments.gmane.org/gmane.emacs.pretest.bugs/19507</link>
    <description>
On several manpages (one of them is attached) WoMan complains:
Invalid search bound (wrong side of point) and leaves point at the end
of the buffer and the buffer status modified and writable.  The
backtrace looks as following:

Debugger entered--Lisp error: (error "Invalid search bound (wrong side of point)")
  re-search-forward("\\([-a-zA-Z0-9_\x8ad+][-a-zA-Z0-9_.:\x8ad+]*\\)[ ]*(\\([0-9][a-zA-Z0-9+]*\\|[LNln]\\))" 8881 t)
  Man-highlight-references0("SEE ALSO" "\\([-a-zA-Z0-9_\x8ad+][-a-zA-Z0-9_.:\x8ad+]*\\)[ ]*(\\([0-9][a-zA-Z0-9+]*\\|[LNln]\\))" 1 Man-default-man-entry WoMan-xref-man-page)
  Man-highlight-references(WoMan-xref-man-page)
  woman-mode()
  woman-process-buffer()
  woman-really-find-file("/usr/share/man/man2/mount.2.gz" t "*WoMan 2 mount*")
  woman-find-file("/usr/share/man/man2/mount.2.gz")
  woman(nil nil)
  call-interactively(woman)


In GNU Emacs 22.1.50.1 (i486-pc-linux-gnu, GTK+ Version 2.10.13)
 of 2007-08-06 on debian, modified by Debian
 (Debian emacs-snapshot package, version 1:20070805-1)
Windowing system distributor `The X.Org Foundation', version 11.0.10300000
configured using `configure  '--build' 'i486-linux-gnu' '--host' 'i486-linux-gnu' '--prefix=/usr' '--sharedstatedir=/var/lib' '--libexecdir=/usr/lib' '--localstatedir=/var' '--infodir=/usr/share/info' '--mandir=/usr/share/man' '--with-pop=yes' '--enable-locallisppath=/etc/emacs-snapshot:/etc/emacs:/usr/local/share/emacs/22.1.50/site-lisp:/usr/local/share/emacs/site-lisp:/usr/share/emacs/22.1.50/site-lisp:/usr/share/emacs/site-lisp:/usr/share/emacs/22.1.50/leim' '--with-x=yes' '--with-x-toolkit=gtk' 'build_alias=i486-linux-gnu' 'host_alias=i486-linux-gnu' 'CFLAGS=-DDEBIAN -DSITELOAD_PURESIZE_EXTRA=5000 -g -O2''

Important settings:
  value of $LC_ALL: nil
  value of $LC_COLLATE: C
  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: de_DE.UTF-8
  locale-coding-system: utf-8
  default-enable-multibyte-characters: t

Major mode: WoMan

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

Recent input:
v q &lt;up&gt; &lt;up&gt; &lt;return&gt; &lt;down&gt; &lt;return&gt; &lt;down&gt; v q &lt;up&gt; 
&lt;up&gt; &lt;return&gt; &lt;down&gt; &lt;down&gt; &lt;return&gt; &lt;up&gt; &lt;return&gt; 
&lt;down&gt; &lt;return&gt; &lt;down&gt; &lt;down&gt; &lt;up&gt; v q &lt;up&gt; &lt;up&gt; &lt;return&gt; 
&lt;down&gt; &lt;return&gt; &lt;down&gt; &lt;down&gt; &lt;down&gt; &lt;down&gt; &lt;down&gt; 
v q &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; 
v q &lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;return&gt; &lt;down&gt; &lt;down&gt; &lt;down&gt; &lt;return&gt; 
&lt;down&gt; &lt;down&gt; v q &lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;down&gt; &lt;return&gt; 
&lt;down&gt; &lt;down&gt; &lt;down&gt; &lt;down&gt; &lt;return&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; v &lt;next&gt; &lt;prior&gt; q &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;return&gt; &lt;down&gt; &lt;down&gt; 
&lt;down&gt; &lt;return&gt; &lt;down&gt; &lt;down&gt; &lt;down&gt; v q &lt;up&gt; &lt;up&gt; 
&lt;up&gt; &lt;up&gt; &lt;return&gt; &lt;down&gt; &lt;down&gt; &lt;return&gt; v q &lt;up&gt; 
&lt;return&gt; &lt;down&gt; &lt;down&gt; &lt;down&gt; &lt;down&gt; &lt;down&gt; &lt;up&gt; &lt;up&gt; 
&lt;return&gt; &lt;down&gt; &lt;down&gt; &lt;down&gt; &lt;down&gt; &lt;down&gt; v q &lt;up&gt; 
&lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;return&gt; &lt;down&gt; &lt;return&gt; v 
q &lt;up&gt; &lt;up&gt; &lt;down&gt; &lt;return&gt; &lt;down&gt; &lt;return&gt; &lt;down&gt; 
&lt;down&gt; &lt;down&gt; v q &lt;down&gt; &lt;down&gt; v q &lt;up&gt; &lt;up&gt; &lt;up&gt; 
&lt;up&gt; &lt;up&gt; v q &lt;down&gt; v q &lt;down&gt; &lt;down&gt; &lt;down&gt; v &lt;next&gt; 
&lt;prior&gt; &lt;next&gt; &lt;prior&gt; q &lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;up&gt; &lt;return&gt; 
C-u &lt;C-f1&gt; &lt;return&gt; &lt;prior&gt; &lt;prior&gt; &lt;prior&gt; &lt;prior&gt; 
&lt;C-end&gt; C-x C-j C-s t r a c e &lt;down&gt; &lt;down&gt; v &lt;next&gt; 
&lt;next&gt; &lt;next&gt; &lt;next&gt; &lt;next&gt; q &lt;C-f1&gt; m o u n t &lt;tab&gt; 
&lt;tab&gt; &lt;return&gt; 8 &lt;return&gt; &lt;return&gt; g &lt;return&gt; &lt;backspace&gt; 
8 &lt;return&gt; &lt;return&gt; &lt;C-end&gt; q &lt;C-f1&gt; m o u n t &lt;tab&gt; 
&lt;return&gt; 2 &lt;tab&gt; &lt;return&gt; M-x t o g g l e - d e b &lt;tab&gt; 
e r r &lt;tab&gt; &lt;return&gt; M-x r e p o &lt;tab&gt; r &lt;tab&gt; e C-g 
&lt;C-f1&gt; C-g C-x k &lt;return&gt; &lt;C-f1&gt; &lt;up&gt; &lt;return&gt; 2 &lt;return&gt; 
&lt;return&gt; C-x h M-w C-x o M-x r e p o r t - e m &lt;tab&gt; 
b u g &lt;return&gt;

Recent messages:
Man-highlight-references0: Invalid search bound (wrong side of point)
Debug on Error enabled globally
Making completion list...
Quit [2 times]
Making completion list...
uncompressing mount.2.gz...done
WoMan formatting buffer...done in 0 seconds
Entering debugger...
Mark set [2 times]
Loading emacsbug...done
.\" Hey Emacs! This file is -*- nroff -*- source.
.\"
.\" Copyright (C) 1993 Rickard E. Faith &lt;faith&lt; at &gt;cs.unc.edu&gt;
.\" and Copyright (C) 1994 Andries E. Brouwer &lt;aeb&lt; at &gt;cwi.nl&gt;
.\" and Copyright (C) 2002, 2005 Michael Kerrisk &lt;mtk-manpages&lt; at &gt;gmx.net&gt;
.\"
.\" Permission is granted to make and distribute verbatim copies of this
.\" manual provided the copyright notice and this permission notice are
.\" preserved on all copies.
.\"
.\" Permission is granted to copy and distribute modified versions of this
.\" manual under the conditions for verbatim copying, provided that the
.\" entire resulting derived work is distributed under the terms of a
.\" permission notice identical to this one.
.\"
.\" Since the Linux kernel and libraries are constantly changing, this
.\" manual page may be incorrect or out-of-date.  The author(s) assume no
.\" responsibility for errors or omissions, or for damages resulting from
.\" the use of the information contained herein.  The author(s) may not
.\" have taken the same level of care in the production of this manual,
.\" which is licensed free of charge, as they might when working
.\" professionally.
.\"
.\" Formatted or processed versions of this manual, if unaccompanied by
.\" the source, must acknowledge the copyright and authors of this work.
.\"
.\" Modified 1996-11-04 by Eric S. Raymond &lt;esr&lt; at &gt;thyrsus.com&gt;
.\" Modified 2001-10-13 by Michael Kerrisk &lt;mtk-manpages&lt; at &gt;gmx.net&gt;
.\"Added note on historical behavior of MS_NOSUID
.\" Modified 2002-05-16 by Michael Kerrisk &lt;mtk-manpages&lt; at &gt;gmx.net&gt;
.\"Extensive changes and additions
.\" Modified 2002-05-27 by aeb
.\" Modified 2002-06-11 by Michael Kerrisk &lt;mtk-manpages&lt; at &gt;gmx.net&gt;
.\"Enhanced descriptions of MS_MOVE, MS_BIND, and MS_REMOUNT
.\" Modified 2004-06-17 by Michael Kerrisk &lt;mtk-manpages&lt; at &gt;gmx.net&gt;
.\" 2005-05-18, mtk, Added MNT_EXPIRE, plus a few other tidy-ups.
.\"
.TH MOUNT 2 2004-05-18 "Linux" "Linux Programmer's Manual"
.SH NAME
mount, umount, umount2 \- mount and unmount filesystems
.SH SYNOPSIS
.nf
.B "#include &lt;sys/mount.h&gt;"
.sp
.BI "int mount(const char *" source ", const char *" target ,
.BI "          const char *" filesystemtype ", unsigned long " mountflags ,
.BI "          const void *" data );
.sp
.BI "int umount(const char *" target );
.sp
.BI "int umount2(const char *" target ", int " flags );
.fi
.SH DESCRIPTION
.BR mount ()
attaches the filesystem specified by
.I source
(which is often a device name, but can also be a directory name
or a dummy) to the directory specified by
.IR target .

.BR umount ()
and
.BR umount2 ()
remove the attachment of the (topmost) filesystem mounted on
.IR target .

Appropriate privilege (Linux: the
.B CAP_SYS_ADMIN
capability) is required to mount and unmount filesystems.

Since Linux 2.4 a single filesystem can be visible at
multiple mount points, and multiple mounts can be stacked
on the same mount point.
.\" Multiple mounts on same mount point: since 2.3.99pre7.

Values for the
.IR filesystemtype
argument supported by the kernel are listed in
.I /proc/filesystems
(like "minix", "ext2", "msdos", "proc", "nfs", "iso9660" etc.).
Further types may become available when the appropriate modules
are loaded.

The
.IR mountflags
argument may have the magic number 0xC0ED (\fBMS_MGC_VAL\fP)
in the top 16 bits (this was required in kernel versions prior to 2.4, but
is no longer required and ignored if specified),
and various mount flags (as defined in \fI&lt;linux/fs.h&gt;\fP for libc4 and libc5
and in \fI&lt;sys/mount.h&gt;\fP for glibc2) in the low order 16 bits:
.\" FIXME 2.6.15 added flags for "shared sub-tree" functionality:
.\" MS_UNBINDABLE, MS_PRIVATE, MS_SHARED, MS_SLAVE
.\" These need to be documented on this page.
.\" See Documentation/sharedsubtree.txt
.TP
.B MS_BIND
(Linux 2.4 onwards)
.\" since 2.4.0-test9
Perform a bind mount, making a file or a directory subtree visible at
another point within a file system.
Bind mounts may cross file system boundaries and span
.BR chroot (2)
jails.
The
.IR filesystemtype ", " mountflags ", and " data
arguments are ignored.
.\" with the exception of the "hidden" MS_REC mountflags bit
.TP
.BR MS_DIRSYNC " (since Linux 2.5.19)"
Make directory changes on this file system synchronous.
(This property can be obtained for individual directories
or subtrees using
.BR chattr (8).)
.TP
.B MS_MANDLOCK
Permit mandatory locking on files in this file system.
(Mandatory locking must still be enabled on a per-file basis,
as described in
.BR fcntl (2).)
.\" FIXME Say more about MS_MOVE
.TP
.B MS_MOVE
Move a subtree.
.I source
specifies an existing mount point and
.I target
specifies the new location.
The move is atomic: at no point is the subtree unmounted.
The
.IR filesystemtype ", " mountflags ", and " data
arguments are ignored.
.TP
.B MS_NOATIME
Do not update access times for (all types of) files on this file system.
.TP
.B MS_NODEV
Do not allow access to devices (special files) on this file system.
.TP
.B MS_NODIRATIME
Do not update access times for directories on this file system.
.TP
.B MS_NOEXEC
Do not allow programs to be executed from this file system.
.\" (Possibly useful for a file system that contains non-Linux executables.
.\" Often used as a security feature, e.g., to make sure that restricted
.\" users cannot execute files uploaded using ftp or so.)
.TP
.B MS_NOSUID
Do not honor set-user-ID and set-group-ID bits when executing
programs from this file system.
.\" (This is a security feature to prevent users executing set-user-ID and
.\" set-group-ID programs from removable disk devices.)
.TP
.B MS_RDONLY
Mount file system read-only.
.\"
.\" FIXME Document MS_REC, available since 2.4.11.
.\" This flag has meaning in conjunction with MS_BIND and
.\" also with the shared sub-tree flags.
.TP
.BR MS_RELATIME "(Since Linux 2.6.20)"
When a file on this file system is accessed,
only update the file's last accessed time (atime) if the current value
of atime is less than or equal to the file's last modified (mtime)
or last status change time (ctime).
This option is useful for programs, such as
.BR mutt (1),
that need to know when a file has been read since it was last modified.
.TP
.B MS_REMOUNT
Remount an existing mount.
This is allows you to change the
.I mountflags
and
.I data
of an existing mount without having to unmount and remount the file system.
.I source
and
.I target
should be the same values specified in the initial
.BR mount ()
call;
.I filesystemtype
is ignored.

The following
.I mountflags
can be changed:
.BR MS_RDONLY ,
.BR MS_SYNCHRONOUS ,
.BR MS_MANDLOCK ;
before kernel 2.6.16, the following could also be changed:
.BR MS_NOATIME
and
.BR MS_NODIRATIME ;
and, additionally, before kernel 2.4, the following could also be changed:
.BR MS_NOSUID ,
.BR MS_NODEV ,
.BR MS_NOEXEC .
.TP
.B MS_SYNCHRONOUS
Make writes on this file system synchronous (as though
the
.B O_SYNC
flag to
.BR open (2)
was specified for all file opens to this file system).
.PP
.BR MS_NODEV ", " MS_NOEXEC ", and " MS_NOSUID
flags are settable on a per-mount-point basis.
.B MS_NOATIME
and
.B MS_NODIRATIME
are also settable on a per-mount-point basis.
The
.B MS_RELATIME
flag is also settable on a per-mount-point basis.
.PP
The
.IR data
argument is interpreted by the different file systems.
Typically it is a string of comma-separated options
understood by this file system.
See
.BR mount (8)
for details of the options available for each filesystem type.
.PP
.\" Note: the kernel naming differs from the glibc naming
.\" umount2 is the glibc name for what the kernel now calls umount
.\" and umount is the glibc name for oldumount
Linux 2.1.116 added the
.BR umount2 ()
system call, which, like
.BR umount (),
unmounts a target, but allows additional
.I flags
controlling the behavior of the operation:
.TP
.BR MNT_FORCE " (since Linux 2.1.116)"
Force unmount even if busy.
This can cause data loss.
(Only for NFS mounts.)
.\" FIXME Can MNT_FORCE result in data loss?  According to
.\" the Solaris manual page it can cause data loss on Solaris.
.\" If the same holds on Linux, then this should be documented.
.TP
.BR MNT_DETACH " (since Linux 2.4.11)"
Perform a lazy unmount: make the mount point unavailable for
new accesses, and actually perform the unmount when the mount point
ceases to be busy.
.TP
.BR MNT_EXPIRE " (since Linux 2.6.8)"
Mark the mount point as expired.
If a mount point is not currently in use, then an initial call to
.BR umount2 ()
with this flag fails with the error
.BR EAGAIN ,
but marks the mount point as expired.
The mount point remains expired as long as it isn't accessed
by any process.
A second
.BR umount2 ()
call specifying
.B MNT_EXPIRE
unmounts an expired mount point.
This flag cannot be specified with either
.B MNT_FORCE
or
.BR MNT_DETACH .
.SH "RETURN VALUE"
On success, zero is returned.
On error, \-1 is returned, and
.I errno
is set appropriately.
.SH ERRORS
The error values given below result from filesystem type independent
errors.
Each filesystem type may have its own special errors and its
own special behavior.
See the kernel source code for details.
.TP
.B EACCES
A component of a path was not searchable.
(See also
.BR path_resolution (7).)
Or, mounting a read-only filesystem was attempted without giving the
.B MS_RDONLY
flag.
Or, the block device
.I source
is located on a filesystem mounted with the
.B MS_NODEV
option.
.\" mtk: Probably: write permission is required for MS_BIND, with
.\" the error EPERM if not present; CAP_DAC_OVERRIDE is required.
.TP
.B EAGAIN
A call to
.BR umount2 ()
specifying
.B MNT_EXPIRE
successfully marked an unbusy file system as expired.
.TP
.B EBUSY
.I source
is already mounted.
Or, it cannot be remounted read-only,
because it still holds files open for writing.
Or, it cannot be mounted on
.I target
because
.I target
is still busy (it is the working directory of some task,
the mount point of another device, has open files, etc.).
Or, it could not be unmounted because it is busy.
.TP
.B EFAULT
One of the pointer arguments points outside the user address space.
.TP
.B EINVAL
.I source
had an invalid superblock.
Or, a remount
.RB ( MS_REMOUNT )
was attempted, but
.I source
was not already mounted on
.IR target .
Or, a move
.RB ( MS_MOVE )
was attempted, but
.I source
was not a mount point, or was '/'.
Or, an unmount was attempted, but
.I target
was not a mount point.
Or,
.BR umount2 ()
was called with
.B MNT_EXPIRE
and either
.B MNT_DETACH
or
.BR MNT_FORCE .
.TP
.B ELOOP
Too many link encountered during pathname resolution.
Or, a move was attempted, while
.I target
is a descendant of
.IR source .
.TP
.B EMFILE
(In case no block device is required:)
Table of dummy devices is full.
.TP
.B ENAMETOOLONG
A pathname was longer than
.BR MAXPATHLEN .
.TP
.B ENODEV
.I filesystemtype
not configured in the kernel.
.TP
.B ENOENT
A pathname was empty or had a nonexistent component.
.TP
.B ENOMEM
The kernel could not allocate a free page to copy filenames or data into.
.TP
.B ENOTBLK
.I source
is not a block device (and a device was required).
.TP
.B ENOTDIR
The second argument, or a prefix of the first argument, is not
a directory.
.TP
.B ENXIO
The major number of the block device
.I source
is out of range.
.TP
.B EPERM
The caller does not have the required privileges.
.SH "CONFORMING TO"
These functions are Linux specific and should not be used in
programs intended to be portable.
.SH NOTES
.SS Linux Notes
The original
.BR umount ()
function was called as \fIumount(device)\fP and would return
.B ENOTBLK
when called with something other than a block device.
In Linux 0.98p4 a call \fIumount(dir)\fP was added, in order to
support anonymous devices.
In Linux 2.3.99-pre7 the call \fIumount(device)\fP was removed,
leaving only \fIumount(dir)\fP (since now devices can be mounted
in more than one place, so specifying the device does not suffice).
.LP
The original
.BR MS_SYNC
flag was renamed
.BR MS_SYNCHRONOUS
in 1.1.69
when a different
.BR MS_SYNC
was added to \fI&lt;mman.h&gt;\fP.
.LP
Before Linux 2.4 an attempt to execute a set-user-ID or set-group-ID program
on a filesystem mounted with
.B MS_NOSUID
would fail with
.BR EPERM .
Since Linux 2.4 the set-user-ID and set-group-ID bits are
just silently ignored in this case.
.\" The change is in patch-2.4.0-prerelease.
.SH "SEE ALSO"
.BR path_resolution (7),
.BR mount (8),
.BR umount (8)
_______________________________________________
emacs-pretest-bug mailing list
emacs-pretest-bug&lt; at &gt;gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-pretest-bug
</description>
    <dc:creator>Sven Joachim</dc:creator>
    <dc:date>2007-08-08T13:08:27</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.emacs.pretest.bugs/19499">
    <title>file-remote-p called a lot?</title>
    <link>http://comments.gmane.org/gmane.emacs.pretest.bugs/19499</link>
    <description>I noticed this while using debug-on-entry and stepping through
while debugging my woes with tpu-extras.el inadvertantly
redefining newline.

I observe that  file-remote-p gets called *lots* of times while
doing things like expand-file-name --- though it doesn't appear
to have a performance hit on today's machines, it still feels
excessive --- at least when watching things in the debugger to
see Emacs performing the same set of contortions over and over again.


In GNU Emacs 22.1.50.11 (i686-pc-linux-gnu, GTK+ Version 2.8.20)
 of 2007-08-04 on labrador
configured using `configure  '--prefix=/usr/local' '--with-toolkit=gtk''

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: en_US.UTF-8
  locale-coding-system: utf-8
  default-enable-multibyte-characters: nil

Major mode: VM

Minor modes in effect:
  jabber-activity-mode: t
  dired-omit-mode: t
  dynamic-completion-mode: t
  shell-dirtrack-mode: t
  display-time-mode: t
  desktop-save-mode: t
  auto-insert-mode: t
  encoded-kbd-mode: t
  file-name-shadow-mode: t
  global-font-lock-mode: t
  font-lock-mode: t
  unify-8859-on-encoding-mode: t
  utf-translate-cjk-mode: t
  auto-compression-mode: t

Recent input:
R o o RET ESC &gt; RET ESC m C-p C-p C-x C-x C-p ESC m 
C-n C-e e RET RET a n d SPC b u i l d i n g SPC t h 
i s SPC r e s u l t s SPC i n SPC a SPC v e r s i o 
n SPC t h a t SPC c a l l s SPC i t s e l f SPC C-h 
v e m a c s - v e r s i o n RET 2 2 . 1 . 5 0 . x SPC 
- - SPC i s SPC t h a t SPC a SPC " b r a n c h " SPC 
o r SPC a SPC " t r u n k " ? RET RET A l s o l ESC 
m C-k A l s o , SPC i s SPC t h e r SPC s DEL ESC \ 
e SPC s o m e t h i n g SPC n e w e r SPC c a l l SPC 
ESC \ e d SPC E m a c s SPC 2 3 SPC i n SPC t h e SPC 
C V S SPC r e p o s i t o r y SPC t h a t SPC I SPC 
c o u l d SPC b e SPC u s i n g ? C-c C-g C-c C-c C-e 
m d n j ' d n d n k j ' k k ' k k P j ' P j ' k k k 
k k ESC x r e p o r t SPC e m a c s SPC b u TAB RE
T

Recent messages:
Decoding MIME message... done
Hid 2  citation lines
Not on a block
Hid 2  citation lines
End of message 15 from Richard Stallman
End of message 16 from Richard Stallman
End of message 17 from Richard Stallman
Hid 2  citation lines
End of message 16 from Richard Stallman
Loading emacsbug...done

</description>
    <dc:creator>raman</dc:creator>
    <dc:date>2007-08-08T02:48:36</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.emacs.pretest.bugs/19489">
    <title>missing links in *Help*</title>
    <link>http://comments.gmane.org/gmane.emacs.pretest.bugs/19489</link>
    <description>
Please write in English if possible, because the Emacs maintainers
usually do not have translators to read other languages for them.

Your bug report will be posted to the emacs-pretest-bug&lt; at &gt;gnu.org mailing list.

Please describe exactly what actions triggered the bug
and the precise symptoms of the bug:


1. Run an Emacs using a window system (I'm using X)
2. Visit a patch file; make sure it is in diff-mode
3. C-h b
4. Move your mouse around the *Help* buffer.
   Note that diff-unified-&gt;context and diff-context-&gt;unified
   do not highlight -- you cannot click on these to go to the
   appropriate help text.  However, you can click on most of the other
   commands.


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
/usr/share/emacs/22.0.990/etc/DEBUG for instructions.


In GNU Emacs 22.0.990.1 (i386-koji-linux-gnu, GTK+ Version 2.10.11)
 of 2007-05-23 on xenbuilder3.fedora.phx.redhat.com
Windowing system distributor `The X.Org Foundation', version 11.0.70101000
configured using `configure  '--build=i386-koji-linux-gnu' '--host=i386-koji-linux-gnu' '--target=i386-redhat-linux-gnu' '--program-prefix=' '--prefix=/usr' '--exec-prefix=/usr' '--bindir=/usr/bin' '--sbindir=/usr/sbin' '--sysconfdir=/etc' '--datadir=/usr/share' '--includedir=/usr/include' '--libdir=/usr/lib' '--libexecdir=/usr/libexec' '--localstatedir=/var' '--sharedstatedir=/usr/com' '--mandir=/usr/share/man' '--infodir=/usr/share/info' '--with-pop' '--with-sound' '--with-gtk' 'build_alias=i386-koji-linux-gnu' 'host_alias=i386-koji-linux-gnu' 'target_alias=i386-redhat-linux-gnu' 'CFLAGS=-DMAIL_USE_LOCKF -DSYSTEM_PURESIZE_EXTRA=16777216 -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions --param=ssp-buffer-size=4 -m32 -march=i386 -mtune=generic -fasynchronous-unwind-tables''

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: en_US.UTF-8
  locale-coding-system: utf-8
  default-enable-multibyte-characters: t

Major mode: Emacs-Lisp

Minor modes in effect:
  flyspell-mode: t
  eldoc-mode: t
  erc-services-mode: t
  tooltip-mode: t
  mouse-wheel-mode: t
  file-name-shadow-mode: t
  global-font-lock-mode: t
  font-lock-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

Recent input:
C-p C-p C-p C-w C-x C-s M-x d i f f - m o &lt;tab&gt; &lt;tab&gt; 
&lt;M-backspace&gt; &lt;backspace&gt; &lt;tab&gt; &lt;tab&gt; C-g C-h f d i 
f f &lt;return&gt; C-x 1 &lt;switch-frame&gt; &lt;switch-frame&gt; &lt;switch-frame&gt; 
C-z o x C-/ M-x d i f f - m o d e &lt;return&gt; C-v C-v 
C-v C-h b C-x o C-x 1 C-s a p p l y C-s C-r C-r C-a 
&lt;help-echo&gt; &lt;down-mouse-2&gt; &lt;mouse-2&gt; &lt;help-echo&gt; &lt;down-mouse-2&gt; 
&lt;mouse-2&gt; &lt;help-echo&gt; &lt;down-mouse-2&gt; &lt;mouse-2&gt; &lt;switch-frame&gt; 
C-x C-f &lt;M-backspace&gt; &lt;M-backspace&gt; &lt;M-backspace&gt; E 
m &lt;tab&gt; e m &lt;tab&gt; d i f &lt;tab&gt; &lt;M-backspace&gt; l i s &lt;tab&gt; 
/ d i f &lt;tab&gt; &lt;tab&gt; &lt;tab&gt; - m &lt;tab&gt; &lt;return&gt; C-s b 
u f e r C-b C-b f C-s C-s C-b C-b f C-s C-s C-b C-b 
f M-% b u f e r &lt;return&gt; b u f f e r &lt;return&gt; C-u C-SPC 
C-a C-u C-n C-c a T y p o . &lt;M-backspace&gt; F i x SPC 
t y p o C-c b C-u C-SPC C-c a l i M-/ . C-c C-g &lt;M-backspace&gt; 
l i k M-/ . &lt;backspace&gt; w M-/ . C-c b C-u C-SPC C-c 
a l i k M-/ . C-x SPC C-x s SPC SPC n C-z o &lt;help-echo&gt; 
&lt;down-mouse-1&gt; &lt;mouse-2&gt; &lt;help-echo&gt; &lt;down-mouse-5&gt; 
&lt;mouse-5&gt; &lt;help-echo&gt; &lt;down-mouse-2&gt; &lt;mouse-2&gt; &lt;help-echo&gt; 
&lt;down-mouse-1&gt; &lt;mouse-2&gt; &lt;help-echo&gt; &lt;switch-frame&gt; 
&lt;help-echo&gt; C-x C-f d i f f f - m o C-u C-b C-b C-d 
C-e C-e &lt;tab&gt; &lt;return&gt; C-s d i f f - c o n t e x t 
- C-w C-s C-s C-s C-r C-r C-f C-h f &lt;return&gt; &lt;switch-frame&gt; 
&lt;switch-frame&gt; M-b C-s C-w C-w C-w C-s C-w C-s C-s 
C-s C-s C-s C-s C-s C-s C-a &lt;switch-frame&gt; &lt;help-echo&gt; 
&lt;down-mouse-1&gt; &lt;mouse-2&gt; &lt;help-echo&gt; &lt;switch-frame&gt; 
&lt;switch-frame&gt; &lt;help-echo&gt; &lt;switch-frame&gt; M-x r e p 
o r t - e m &lt;tab&gt; &lt;return&gt;

Recent messages:
Saving file /home/tromey/gnu/Emacs/emacs/lisp/ChangeLog...
Loading copyright...done
Wrote /home/tromey/gnu/Emacs/emacs/lisp/ChangeLog
Saving file /home/tromey/gnu/Emacs/emacs/lisp/diff-mode.el...
Replace GPL version by 2? (y or n) 
Wrote /home/tromey/gnu/Emacs/emacs/lisp/diff-mode.el
Mark saved where search started
Type C-x 1 to remove help window.  
Mark saved where search started
Loading emacsbug...done
</description>
    <dc:creator>Tom Tromey</dc:creator>
    <dc:date>2007-08-06T18:49:39</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.emacs.pretest.bugs/19481">
    <title>HowTo: Avoid packages like TPU</title>
    <link>http://comments.gmane.org/gmane.emacs.pretest.bugs/19481</link>
    <description>
With loaddefs.el in Emacs 22, rarely used packages 
like tpu end up showing up in the default obarray operated upon
by mapatoms. Is there a way to avoid this?

I use reflection via mapatoms to find interactive commands that
need to be speech-enabled in Emacspeak, and one unfortunate
consequence is the following:

0) mapatoms finds commands like "set cursor free" from tpu-extras
1) In using reflection, it ends up loading tpu-extras.el (even
   though I have no intention of using tpu)
2) Worse, tpu-extras is evil -- it redefines things like newline
3) And even worse, tpu-current-line (used by the redefined newline)
       raises errors at times when called from display-warning.

In the minimum it would be nice if optional packages that
redefine core functionality such as command `newline' didn't get
accidentally pulled in.


In GNU Emacs 22.1.50.11 (i686-pc-linux-gnu, GTK+ Version 2.8.20)
 of 2007-08-04 on labrador
configured using `configure  '--prefix=/usr/local' '--with-toolkit=gtk''

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: en_US.UTF-8
  locale-coding-system: utf-8
  default-enable-multibyte-characters: nil

Major mode: Shell

Minor modes in effect:
  jabber-activity-mode: t
  erc-menu-mode: t
  erc-autojoin-mode: t
  erc-ring-mode: t
  erc-pcomplete-mode: t
  erc-track-mode: t
  erc-match-mode: t
  erc-button-mode: t
  erc-fill-mode: t
  erc-stamp-mode: t
  erc-netsplit-mode: t
  dired-omit-mode: t
  dynamic-completion-mode: t
  erc-irccontrols-mode: t
  erc-noncommands-mode: t
  erc-readonly-mode: t
  shell-dirtrack-mode: t
  display-time-mode: t
  desktop-save-mode: t
  auto-insert-mode: t
  encoded-kbd-mode: t
  file-name-shadow-mode: t
  global-font-lock-mode: t
  font-lock-mode: t
  unify-8859-on-encoding-mode: t
  utf-translate-cjk-mode: t
  auto-compression-mode: t

Recent input:
SPC a t t a c h i n g SPC a SPC s t a c k - t r a c 
e ; SPC t h o u g h SPC I SPC n o w SPC h a v e SPC 
a SPC f i x SPC f o r SPC e m a c s p e a k , SPC i 
t SPC w o u l d SPC b e SPC ESC DEL p r o b a b l y 
SPC b e SPC u s e f u l SPC t o SPC f i x SPC t h e 
DEL DEL DEL SPC t h e SPC s i g n a l SPC t h a t SPC 
i s SPC b e i n g SPC r a i s e d SPC f o DEL r o m 
SPC a SPC c o d e SPC h y g e n e SPC p o i n t SPC 
o f SPC v i e w . RET RET C-c C-a ~ / . s i g n a l 
TAB ESC DEL s i g n TAB C-g C-x &lt; at &gt; h s c d RET l s SPC 
. s i g TAB * RET C-p ESC &gt; ESC [ [ C C-c C-a ~ / . 
s i g n a l TAB DEL C-g C-g ESC m C-p C-x i ~ / . s 
i g n a l TAB RET ESC m C-p C-p C-c C-c y y e s RET 
C-e m c d RET C-x m C-g C-g C-e m ESC [ [ D ESC x r 
e p o r t - e m a c s - b TAB RET

Recent messages:
Completing file name...
Partially completed
Quit [2 times]
Convert non-ASCII letters to hexadecimal? (y or n) 
Sending...
Added to /home/raman/Mail/outgoing
Sending...done
~ 
Composing a message
Quit
Quit

</description>
    <dc:creator>raman</dc:creator>
    <dc:date>2007-08-05T19:22:24</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.emacs.pretest.bugs/19474">
    <title>Feature Request: Enable Passing Function Arguments Tocall-interacively</title>
    <link>http://comments.gmane.org/gmane.emacs.pretest.bugs/19474</link>
    <description>d
Have always had this as a wishlist item for call-interactively 
--namely the ability to do with call-interactively what one can
do with funcall.

Thus given:

(defun foo (a b c)
(interactive ...)...)

(funcall 'foo 1 2 3 ;;; calls foo non-interactively 
(call-function-interactivly  'foo 1 2 3 )
; do the equivalent but make it look as if foo  as was called
interactvely i.e. 
(interactive-p) inside foo evaluates to true.



In GNU Emacs 22.1.50.10 (i686-pc-linux-gnu, GTK+ Version 2.8.20)
 of 2007-08-03 on labrador
configured using `configure  '--prefix=/usr/local' '--with-toolkit=gtk''

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: en_US.UTF-8
  locale-coding-system: utf-8
  default-enable-multibyte-characters: nil

Major mode: Shell

Minor modes in effect:
  jabber-activity-mode: t
  erc-menu-mode: t
  erc-autojoin-mode: t
  erc-ring-mode: t
  erc-pcomplete-mode: t
  erc-track-mode: t
  erc-match-mode: t
  erc-button-mode: t
  erc-fill-mode: t
  erc-stamp-mode: t
  erc-netsplit-mode: t
  dired-omit-mode: t
  dynamic-completion-mode: t
  erc-irccontrols-mode: t
  erc-noncommands-mode: t
  erc-readonly-mode: t
  shell-dirtrack-mode: t
  display-time-mode: t
  desktop-save-mode: t
  auto-insert-mode: t
  encoded-kbd-mode: t
  file-name-shadow-mode: t
  global-font-lock-mode: t
  font-lock-mode: t
  unify-8859-on-encoding-mode: t
  utf-translate-cjk-mode: t
  auto-compression-mode: t

Recent input:
TAB s h TAB o TAB e TAB v TAB RET ESC p RET C-n C-n 
C-p ESC &lt; C-n C-e m ESC x e m a c s SPC l i s TAB m 
o TAB RET ESC &lt; C-n C-n C-n C-x k RET ESC m C-x o ESC 
m C-p C-p C-e e C-j ( e m a c s - l i s p - m o d e 
) C-j ( g o t o - c h a r SPC ( p o i n t - m i n ) 
) ESC d ESC m C-x C-s ESC s ESC C-a ESC C-f C-p C-p 
C-p C-p C-n C-n C-n C-n C-n C-p C-e e RET C-x C-s C-e 
k C-p C-p C-e C-g C-g ESC m ESC C-f C-j ESC m C-y C-x 
C-s C-e e C-x C-e C-x C-s ESC C-a ESC C-f C-x C-e C-x 
C-s C-x &lt; at &gt; h s ESC x ESC p RET ESC x s h e l l SPC m 
o d TAB RET ESC x ESC p ESC p ESC p RET ESC p RET ESC 
m C-n C-n C-x k RET C-x k e m RET C-x &lt; at &gt; h s c d RET 
c d SPC e m TAB l i TAB e m TAB RET s v n SPC c i SPC 
- m SPC " " ; SPC m a k e RET C-x &lt; at &gt; h m d n q C-x &lt; at &gt; 
h m d P q C-x m e m a c s - d e v e l &lt; at &gt; C-x k RET ESC 
x r e p o r t SPC b TAB DEL DEL TAB TAB C-e l TAB - 
b TAB DEL DEL DEL - b TAB RET

Recent messages:
Saving file /home/raman/mbox...
Wrote /home/raman/mbox
Sorting for index file...
Stuffing index file...
Writing index file...
Wrote /home/raman/.mbox.idx
Writing index file... done
Loading mailalias...done
Composing a message
Making completion list... [2 times]

</description>
    <dc:creator>raman</dc:creator>
    <dc:date>2007-08-04T23:58:34</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.emacs.pretest.bugs/19470">
    <title>When in no-window use GNU Emacs clips contents in *Backtrace* buffer</title>
    <link>http://comments.gmane.org/gmane.emacs.pretest.bugs/19470</link>
    <description>Hello!

When I launch GNU Emacs as an X client with --debug-init lines in  
*Backtrace* buffer are truncated, so I copy them and paste them into  
*scratch* buffer. Everything's now expanded to full length.

When I try the same in xterm or in Apple's Terminal without windows,  
the truncated lines like in this example

Debugger entered--Lisp error: (void-variable -)
  eval-buffer(#&lt;buffer  *load*&gt; nil "/Users/pete/.emacs" nil t)  ;  
Reading at buffer position 2$
  load-with-code-conversion("/Users/pete/.emacs" "/Users/ 
pete/.emacs" t t)

are not expanded, they seem to be clipped in *Backtrace* buffer. So  
it's not easy to get the buffer position where the error happens ...


In GNU Emacs 22.1.50.1 (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-sound' '--without-pop' '-- 
with-x-toolkit=athena' '--with-xpm' '--with-jpeg' '--with-tiff' '-- 
with-gif' '--with-png' '--enable-locallisppath=/Library/Application  
Support/Emacs/calendar22:/Library/Application Support/Emacs'  
'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' 'CXXFLAGS=-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' 'LDFLAGS=- 
dead_strip -L/sw/lib/freetype219/lib -L/sw/lib/fontconfig2/lib -L/sw/ 
lib/ncurses -L/usr/local/lib -L/sw/lib' 'CFLAGS=-pipe -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''

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:
   shell-dirtrack-mode: t
   show-paren-mode: t
   display-time-mode: t
   desktop-save-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
   column-number-mode: t
   line-number-mode: t
   transient-mark-mode: t



--
Greetings

   Pete

There's no place like ~
                           (UNIX Guru)
</description>
    <dc:creator>Peter Dyballa</dc:creator>
    <dc:date>2007-08-04T13:15:58</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.emacs.pretest.bugs/19467">
    <title>printing.el is broken</title>
    <link>http://comments.gmane.org/gmane.emacs.pretest.bugs/19467</link>
    <description>
emacs -Q -l printing

load: Symbol's value as variable is void: ps-print-version
</description>
    <dc:creator>Glenn Morris</dc:creator>
    <dc:date>2007-08-04T02:42:37</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.emacs.pretest.bugs/19466">
    <title>tool-bar doesn't work on the trunk with (default) GTK build</title>
    <link>http://comments.gmane.org/gmane.emacs.pretest.bugs/19466</link>
    <description>
If I click on tool-bar buttons e.g. when the *scratch* buffer is current, I
get messages like:

&lt;write-file&gt; is undefined
&lt;dired&gt; is undefined

I don't know if this is particular to the trunk, using GTK, or my build.


</description>
    <dc:creator>Nick Roberts</dc:creator>
    <dc:date>2007-08-03T00:42:21</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.emacs.pretest.bugs/19456">
    <title>bootstrap fails due to missing cl-loaddefs.el</title>
    <link>http://comments.gmane.org/gmane.emacs.pretest.bugs/19456</link>
    <description>
make bootstrap fails in a fresh cvs checkout of the trunk, due to
the absence of cl-loaddefs.el:

make[2]: Entering directory `/home/gmorris/foo/lisp'
if test -x ../src/emacs; then                           \
          make -w autoloads;                            \
        else                                                    \
          cp /home/gmorris/foo/lisp/ldefs-boot.el
          /home/gmorris/foo/lisp/loaddefs.el;           \
        fi
chmod +w /home/gmorris/foo/lisp/loaddefs.el             \
          /home/gmorris/foo/lisp/ps-print.el                    \
          /home/gmorris/foo/lisp/emacs-lisp/cl-loaddefs.el
chmod: cannot access `/home/gmorris/foo/lisp/emacs-lisp/cl-loaddefs.el': No such file or directory
make[2]: *** [bootstrap-prepare] Error 1


There is no ChangeLog entry for the deletion of this file from CVS,
just a log entry synced from arch:

  * lisp/emacs-lisp/cl-loaddefs.el: Don't track this.  It is autogenerated.

  Revision: emacs&lt; at &gt;sv.gnu.org/emacs--devo--0--patch-833
  Creator:  Michael Olson &lt;mwolson&lt; at &gt;gnu.org&gt;
</description>
    <dc:creator>Glenn Morris</dc:creator>
    <dc:date>2007-07-30T23:00:56</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.emacs.pretest.bugs/19451">
    <title>Evaluating (global-set-key "\C-&lt;" 'ding) in emacs buffer leads to a error invalid modifier in string</title>
    <link>http://comments.gmane.org/gmane.emacs.pretest.bugs/19451</link>
    <description>
Please write in English if possible, because the Emacs maintainers
usually do not have translators to read other languages for them.

Your bug report will be posted to the emacs-pretest-bug&lt; at &gt;gnu.org mailing 
list.

Please describe exactly what actions triggered the bug
and the precise symptoms of the bug:

the subject says it all, contact me for more info if needed be.

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
/usr/local/share/emacs/23.0.0/etc/DEBUG for instructions.


In GNU Emacs 23.0.0.1 (x86_64-unknown-linux-gnu, GTK+ Version 2.10.13)
 of 2007-07-29 on gredesk
Windowing system distributor `The X.Org Foundation', version 11.0.10300000
configured using `configure  '--with-gtk' '--enable-font-backend' 
'--with-xft' '--with-png' '--with-gif' '--with-jpeg' '--with-tiff' 
'--with-xpm' '--with-x''

Important settings:
  value of $LC_ALL: pt_BR.UTF-8
  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: pt_BR.UTF-8
  value of $XMODIFIERS: nil
  locale-coding-system: utf-8-unix
  default-enable-multibyte-characters: t

Major mode: Emacs-Lisp

Minor modes in effect:
  lazy-lock-mode: t
  highlight-tail-mode: t
  display-time-mode: t
  erc-list-mode: t
  erc-menu-mode: t
  erc-autojoin-mode: t
  erc-ring-mode: t
  erc-pcomplete-mode: t
  erc-track-mode: t
  erc-track-minor-mode: t
  erc-match-mode: t
  erc-button-mode: t
  erc-fill-mode: t
  erc-stamp-mode: t
  erc-netsplit-mode: t
  minibuffer-indicate-depth-mode: t
  icicle-mode: t
  shell-dirtrack-mode: t
  erc-smiley-mode: t
  erc-irccontrols-mode: t
  erc-noncommands-mode: t
  erc-readonly-mode: t
  tooltip-mode: t
  tool-bar-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-compression-mode: t
  line-number-mode: t

Recent input:
C-x C-e q M-x r e p o r &lt;tab&gt;
b &lt;tab&gt; &lt;return&gt;
</description>
    <dc:creator>Glauber Prado</dc:creator>
    <dc:date>2007-07-30T12:34:04</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.emacs.pretest.bugs/19448">
    <title>Make bootstrap fails because of missing cl-loaddefs.el</title>
    <link>http://comments.gmane.org/gmane.emacs.pretest.bugs/19448</link>
    <description>
Please write in English if possible, because the Emacs maintainers
usually do not have translators to read other languages for them.

Your bug report will be posted to the emacs-pretest-bug&lt; at &gt;gnu.org mailing list.

Please describe exactly what actions triggered the bug
and the precise symptoms of the bug:

Here's the compile output.

--8&lt;---------------cut here---------------start-------------&gt;8---
(cd lisp; make -w --jobserver-fds=3,4 - --jobserver-fds=3,4 -j
bootstrap-prepare)
make[2]: Entering directory
`/var/tmp/portage/app-editors/emacs-cvs-22.1.50/work/emacs/man'
cd /var/tmp/portage/app-editors/emacs-cvs-22.1.50/work/emacs/man;
makeinfo --force emacs.texi
cd /var/tmp/portage/app-editors/emacs-cvs-22.1.50/work/emacs/man;
makeinfo --force cc-mode.texi
make[2]: Entering directory
`/var/tmp/portage/app-editors/emacs-cvs-22.1.50/work/emacs/lisp'
if test -x ../src/emacs; then                           \
          make -w --jobserver-fds=3,4 - --jobserver-fds=3,4 -
          --jobserver-fds=3,4 - --jobserver-fds=3,4 -j autoloads;
          \
        else                                                    \
          cp
          /var/tmp/portage/app-editors/emacs-cvs-22.1.50/work/emacs/lisp/ldefs-boot.el
          /var/tmp/portage/app-editors/emacs-cvs-22.1.50/work/emacs/lisp/loaddefs.el;
          \
        fi
chmod +w
/var/tmp/portage/app-editors/emacs-cvs-22.1.50/work/emacs/lisp/loaddefs.el
\
          /var/tmp/portage/app-editors/emacs-cvs-22.1.50/work/emacs/lisp/ps-print.el
          \
          /var/tmp/portage/app-editors/emacs-cvs-22.1.50/work/emacs/lisp/emacs-lisp/cl-loaddefs.el
chmod: cannot access
`/var/tmp/portage/app-editors/emacs-cvs-22.1.50/work/emacs/lisp/emacs-lisp/cl-loaddefs.el':
No such file or directory
make[2]: *** [bootstrap-prepare] Error 1
make[2]: Leaving directory
`/var/tmp/portage/app-editors/emacs-cvs-22.1.50/work/emacs/lisp'
make[1]: *** [bootstrap-build] Error 2
make[1]: *** Waiting for unfinished jobs....
--8&lt;---------------cut here---------------end---------------&gt;8---

In GNU Emacs 22.1.50.1 (i686-pc-linux-gnu, GTK+ Version 2.10.14)
 of 2007-07-30 on baldur
configured using `configure  '--prefix=/usr' '--host=i686-pc-linux-gnu' '--mandir=/usr/share/man' '--infodir=/usr/share/info' '--datadir=/usr/share' '--sysconfdir=/etc' '--localstatedir=/var/lib' '--program-suffix=-emacs-22-cvs' '--infodir=/usr/share/info/emacs-22-cvs' '--without-carbon' '--with-sound' '--with-x' '--with-xpm' '--with-toolkit-scroll-bars' '--with-jpeg' '--with-tiff' '--with-gif' '--with-png' '--with-x-toolkit=gtk' '--without-hesiod' '--with-gpm' '--build=i686-pc-linux-gnu' 'build_alias=i686-pc-linux-gnu' 'host_alias=i686-pc-linux-gnu' 'CFLAGS=-march=i686 -mtune=prescott -O2 -pipe''

Important settings:
  value of $LC_ALL: en_US.UTF-8
  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: en_US.UTF-8
  locale-coding-system: utf-8
  default-enable-multibyte-characters: t

Major mode: Group

Minor modes in effect:
  gnus-topic-mode: t
  gnus-undo-mode: t
  desktop-save-mode: t
  recentf-mode: t
  window-number-meta-mode: t
  window-number-mode: t
  savehist-mode: t
  exec-abbrev-cmd-mode: t
  show-paren-mode: t
  global-hl-line-mode: t
  encoded-kbd-mode: t
  menu-bar-mode: t
  file-name-shadow-mode: t
  global-font-lock-mode: t
  font-lock-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:
ESC x g n u s RET RET SPC RET RET RET RET RET RET RET 
RET RET RET RET RET RET RET RET RET RET c RET SPC c 
ESC x r e p o r TAB b u TAB RET

Recent messages:
20070730T090056.690&gt; Opening nntp server on Uni...
20070730T090056.691&gt; Opening nntp server on Uni...done
20070730T090056.715&gt; Fetching headers for nntp+Uni:gnu.emacs.help...
20070730T090056.947&gt; Fetching headers for nntp+Uni:gnu.emacs.help...done
20070730T090057.068&gt; Scoring...
20070730T090057.077&gt; Scoring...done
20070730T090057.078&gt; Generating summary...
20070730T090057.078&gt; Generating summary...done
20070730T090059.611&gt; No more unread articles
Loading emacsbug...done
</description>
    <dc:creator>Tassilo Horn</dc:creator>
    <dc:date>2007-07-30T07:04:53</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.emacs.pretest.bugs/19436">
    <title>Error while bootstrapping GNU Emacs 22.1.50</title>
    <link>http://comments.gmane.org/gmane.emacs.pretest.bugs/19436</link>
    <description>Hello!

Compilation ends with:

In end of data:
dcl-mode.el:2223:1:Warning: the function `imenu-default-create-index- 
function'
     is not known to be defined.
Wrote /Users/pete/Quellen/Emacs_CVS/emacs/lisp/progmodes/dcl-mode.elc
Compiling /Users/pete/Quellen/Emacs_CVS/emacs/lisp/./progmodes/delphi.el
Wrote /Users/pete/Quellen/Emacs_CVS/emacs/lisp/progmodes/delphi.elc
Compiling /Users/pete/Quellen/Emacs_CVS/emacs/lisp/./progmodes/ebnf- 
abn.el
Fatal error (4)make[2]: *** [compile] Error 1
make[2]: Target `bootstrap' not remade because of errors.
make[1]: *** [bootstrap-build] Error 2
make: *** [bootstrap] Error 2


In GNU Emacs 22.1.50.1 (powerpc-apple-darwin8.10.0, X toolkit, Xaw3d  
scroll bars)
  of 2007-07-14 on localhost
Windowing system distributor `The XFree86 Project, Inc', version  
11.0.40400000
configured using `configure  '--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'  
'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' 'CXXFLAGS=-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 -L/sw/lib/ 
freetype219/lib -L/sw/lib/fontconfig2/lib -L/sw/lib/ncurses -L/usr/ 
local/lib -L/sw/lib' 'CFLAGS=-pipe -fPIC -mcpu=7450 -mtune=7450 -fast  
-mpim-altivec -ftree-vectorize -foptimize-register-move -freorder- 
blocks -freorder-blocks-and-partition -fthread-jumps -fpeephole -fno- 
crossjumping''

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: Compilation

Minor modes in effect:
   TeX-PDF-mode: t
   shell-dirtrack-mode: t
   show-paren-mode: t
   display-time-mode: t
   desktop-save-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
   column-number-mode: t
   line-number-mode: t
   transient-mark-mode: t

--
Greetings

   Pete

The mathematician who pursues his studies without clear views of this  
matter, must often have the uncomfortable feeling that his paper and  
pencil surpass him in intelligence.
                                            Ernst Mach
</description>
    <dc:creator>Peter Dyballa</dc:creator>
    <dc:date>2007-07-28T13:27:23</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.emacs.pretest.bugs/19432">
    <title>[Unicode2] calendar window height incorrect</title>
    <link>http://comments.gmane.org/gmane.emacs.pretest.bugs/19432</link>
    <description>Dear all,

Tested in GNU Emacs 23.0.0.4 (i686-pc-linux-gnu, GTK+ Version 2.10.14)
of 2007-07-27

The calendar window has a height of half of the height of the frame.

HTH,
</description>
    <dc:creator>Leo</dc:creator>
    <dc:date>2007-07-27T17:43:29</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.emacs.pretest.bugs/19430">
    <title>SEGFAULT using tramp in unicode emacs</title>
    <link>http://comments.gmane.org/gmane.emacs.pretest.bugs/19430</link>
    <description>Please describe exactly what actions triggered the bug
and the precise symptoms of the bug:

This emacs was built from the unicode branch, CVS updated 2007/07/27.

Starting with "emacs -Q":
I evaluated
(setq tramp-password-prompt-regexp
      "^.*\\(?:[pP]assword\\(?: for .*\\)?\\|passphrase.*\\):
</description>
    <dc:creator>Michael Welsh Duggan</dc:creator>
    <dc:date>2007-07-27T17:11:18</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.emacs.pretest.bugs/19421">
    <title>commandp</title>
    <link>http://comments.gmane.org/gmane.emacs.pretest.bugs/19421</link>
    <description>Hi,

In the latest Emacs trunk the built-in function `commandp' returns
t or nil while it returned an interactive form or nil formerly.
Because of this, `defadvice' makes interactive Lisp functions non-
interactive.  See the `ad-interactive-form' function.  Here is
an example of what it causes:

(defun foo ()
  (interactive)
  (message "Hello"))
 =&gt; foo

(commandp 'foo)
 =&gt; t

(let ((ad-default-compilation-action 'never))
  (defadvice foo (around testing activate)
    "testing"
    (message "Good-bye")))
 =&gt; foo

(commandp 'foo)
 =&gt; nil

(pp (symbol-function 'foo))
 =&gt; (lambda nil
      "$ad-doc: foo$"
      t
      (let (ad-return-value)
(message "Good-bye")
ad-return-value))

Regards,
</description>
    <dc:creator>Katsumi Yamaoka</dc:creator>
    <dc:date>2007-07-26T08:07:41</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>
