bug-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: bug in auto-capitalize.el


From: Kevin Rodgers
Subject: Re: bug in auto-capitalize.el
Date: Wed, 08 Sep 2004 16:15:50 -0600
User-agent: Mozilla/5.0 (X11; U; SunOS i86pc; en-US; rv:0.9.4.1) Gecko/20020406 Netscape6/6.2.2

Norman Werner wrote:
> The following mail is from the original bug report to the maintainer
> of auto-capitalize.el   kevinr@ihs.com
>
> Unfortunately the mail could not be delivered :
>
> SMTP error from remote mailer after RCPT TO:<kevinr@ihs.com>:
> host mail1.ihs.com [170.207.70.222]: 553 5.7.1
> <kevinr@ihs.com>... norman.werner@student.uni-magdeburg.de not
> allowed to send to recipient
>
> Since I could not contact the maintainer directly I am now writing to
> your address

Please don't bother the Emacs maintainers with something they are not
responsible for.  If you had taken even a minute to search for me via
my name (on e.g. http://groups.google.com/) you would have found my
current address: <ihs_4664@yahoo.com>.

> -------Beginning of Message ------------
>
>
> I experienced what I think is a bug in auto-capitalize.
>
> On (gnu)emacs 21.3.1 event-to-character is called with 4 arguments while a
> maximum of 2 is allowed. So the debugger is entered.
>
> I think the offending code is in defun auto-capitalize:
> ....
> (let ((self-insert-char
>          (cond ((fboundp 'event-to-character) ; XEmacs
>                     (event-to-character last-command-event
> nil nil t))
>                (t last-command-event)))) ; GNU Emacs
> ...
>
> The comments indicates that you think that  event-to-character is
> unbound in gnu-emacs. But it exists as a function of one (optional two
> arguments.)

No, it doesn't exist at all in GNU Emacs 21.3.  You can confirm that
by invoking emacs with the -q and --no-site-file command line options,
and typing `C-h v event-to-character'.

You must be loading some kind of XEmacs compatibility package that is
ironically incompatible with XEmacs.

> I propose the fixes :
> (let ((self-insert-char
>          (cond ((featurep 'xemacs) ; XEmacs
>                     (event-to-character last-command-event
> nil nil t))
>                (t last-command-event)))) ; GNU Emacs
> Or
>
> (let ((self-insert-char
>          (cond ((featurep 'xemacs) ; XEmacs
>                     (event-to-character last-command-event
> nil nil t))
>                (t (event-to-character last-command-event))))) ; GNU Emacs
>
> I couldn't test this since I don't have xemacs installed. But It should be ok

(featurep 'xemacs) is evil.

--
Kevin Rodgers





reply via email to

[Prev in Thread] Current Thread [Next in Thread]