file-name-shadow-mode breaks viper-mode's // interpretation

2006-01-03 Thread Jim Meyering
Ever since around Nov 15, (which is when file-name-shadow-mode went in,
or was turned on by default), when I run emacs -q, then do M-x viper-mode,
if I try to open a file by typing C-x C-f /tmp/junk,
(e.g., I see /current/dir//tmp/junk in minibuffer) I end up
instead with a dired buffer on `.' (aka /current/dir).

If I turn off file-name-shadow-mode, everything works as usual.

So, to reproduce,

touch /tmp/junk
emacs -q -f viper-mode
[ Respond `y' to the viperize question. ]
[ Type C-x C-f /tmp/junk RET ]

You end up in a dired buffer rather than with the file you
just touched.


___
emacs-pretest-bug mailing list
emacs-pretest-bug@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-pretest-bug


Re: build failure on Irix 6.5/gcc

2006-01-03 Thread Richard M. Stallman
I'm afraid this really emphasizes that unexec isn't maintainable, even
for use with the GNU tools.  (See TODO.)

I agree, but there's no feasible alternative in the short term.

Someone can surely turn on conservative stack scanning for Irix 6.5
anyway.

In principle someone could.  It requires knowledge of Irix
and the MIPS machine, and whatever issues it presents for
stack scanning to work or not.


___
emacs-pretest-bug mailing list
emacs-pretest-bug@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-pretest-bug


Re: Function "w32_abort" not defined

2006-01-03 Thread Kim F. Storm
Eli Zaretskii <[EMAIL PROTECTED]> writes:

>> If it would be possible to generate .gdbinit depending on the values 
>> specified
>> for `configure'...
>
> As I said, I'm open to suggestions.  I even posted a question to the
> GDB mailing list, but until now no one replied.

I added a run-time check on Vsystem_type -- that works on a dumped emacs;
it doesn't really matter on an undumped emacs, as anyone seldom debugs that.

-- 
Kim F. Storm <[EMAIL PROTECTED]> http://www.cua.dk



___
emacs-pretest-bug mailing list
emacs-pretest-bug@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-pretest-bug


Re: Trailing whitespace fix in lisp/language/

2006-01-03 Thread Kenichi Handa
In article <[EMAIL PROTECTED]>, Michael Ernst <[EMAIL PROTECTED]> writes:

> This patch deletes some spurious trailing whitespace in two files.

Thank you!  I've just committed those changes.

---
Kenichi Handa
[EMAIL PROTECTED]


___
emacs-pretest-bug mailing list
emacs-pretest-bug@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-pretest-bug


Re: vc-annotate tries to load vc-nil

2006-01-03 Thread Juri Linkov
>> Thanks, now I see.  I'm so accustomed to the logic of `log-view-diff'
>> that uses the previous revision if there is no mark.  Perhaps `C-x c ='
>> should use exactly the same logic.
>
> I don't have an opinion, so feel free to change it (it's probably in
> log-view-minor-wrap).

Thanks for the hint.  The patch below changes log-view-minor-wrap to use
the same logic as log-view-diff.

Index: lisp/log-view.el
===
RCS file: /sources/emacs/emacs/lisp/log-view.el,v
retrieving revision 1.27
diff -c -r1.27 log-view.el
*** lisp/log-view.el23 Dec 2005 21:49:32 -  1.27
--- lisp/log-view.el4 Jan 2006 06:28:48 -
***
*** 200,213 
  
  (defun log-view-minor-wrap (buf f)
(let ((data (with-current-buffer buf
!   (cons
!(cons (log-view-current-file)
!  (log-view-current-tag))
!(when mark-active
!  (save-excursion
!(goto-char (mark))
!(cons (log-view-current-file)
!  (log-view-current-tag
  (let ((cvs-branch-prefix (cdar data))
  (cvs-secondary-branch-prefix (and (cdar data) (cddr data)))
  (cvs-minor-current-files
--- 200,217 
  
  (defun log-view-minor-wrap (buf f)
(let ((data (with-current-buffer buf
!   (let* ((beg (if mark-active (region-beginning) (point)))
!  (end (if mark-active (region-end) (point)))
!  (fr (log-view-current-tag beg))
!  (to (log-view-current-tag end)))
! (when (string-equal fr to)
!   (save-excursion
! (goto-char end)
! (log-view-msg-next)
! (setq to (log-view-current-tag
! (cons
!  (cons (log-view-current-file) to)
!  (cons (log-view-current-file) fr))
  (let ((cvs-branch-prefix (cdar data))
  (cvs-secondary-branch-prefix (and (cdar data) (cddr data)))
  (cvs-minor-current-files

-- 
Juri Linkov
http://www.jurta.org/emacs/



___
emacs-pretest-bug mailing list
emacs-pretest-bug@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-pretest-bug


Re: TAB TAB completion fails after loading AUCTeX

2006-01-03 Thread Juri Linkov
> Here's a bug report that I submitted earlier today to the AUCTeX
> buglist.  Ralf Angeli helpfully suggested that this could be a
> (Mac-specific) emacs bug that's triggered by AUCTeX, so I'm posting it
> here.  Please let me know if I can answer any further questions.

Thanks for the bug report.  I can't reproduce it on GNU/Linux.
So perhaps it is really Mac-specific.  Could you put a breakpoint
on `completion-setup-function' and find out on which variable it fails?

-- 
Juri Linkov
http://www.jurta.org/emacs/



___
emacs-pretest-bug mailing list
emacs-pretest-bug@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-pretest-bug


orgtbl-mode bug with unicode characters

2006-01-03 Thread 이휘재
I found wired spacing in orgtbl mode when using unicode characters
(exactly Korean characters)

I suspect that orgtbl counts number of characters instead of their width.
Korean character width is double of latin character width .

Here is the result:

|---|
| 안녕하세요 |
| abcde |
|   |

Five Korean characters occupies 10 char width.
But, orgtbl aligned vertical bar as if they are 5 char width.


In GNU Emacs 22.0.50.1 (i686-pc-linux-gnu, GTK+ Version 2.8.9)
 of 2006-01-04 on hjnotebook
X server distributor `The X.Org Foundation', version 11.0.6090
configured using `configure
'--prefix=/mnt/archive/usr/emacs22-20060104' '--with-x-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: t

Major mode: Lisp Interaction

Minor modes in effect:
  orgtbl-mode: t
  tooltip-mode: t
  auto-compression-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
  unify-8859-on-encoding-mode: t
  utf-translate-cjk-mode: t
  line-number-mode: t

Recent input:
  M-x o r g t b l - m o d e  
 | -  | SPC C-x  C-\ k o
r  h a n g  3  j f s h e a m f n
c j 4 S-SPC  C-\ a b c d e   



 

Recent messages:
Loading org...
Loading easy-mmode...done
Loading org...done
Loading quail...done
Loading quail/hangul3...done
Loading composite...done
Loading tabify...done
Loading emacsbug...
Loading regexp-opt...done
Loading emacsbug...done
___
emacs-pretest-bug mailing list
emacs-pretest-bug@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-pretest-bug