unofficial mirror of emacs-devel@gnu.org 
 help / color / mirror / code / Atom feed
* Re: [Emacs-diffs] Changes to emacs/lisp/help-fns.el,v
       [not found] <E1Iqn6p-0005zm-K5@cvs.savannah.gnu.org>
@ 2007-11-10 12:47 ` Juanma Barranquero
  2007-11-10 13:23   ` martin rudalics
  0 siblings, 1 reply; 7+ messages in thread
From: Juanma Barranquero @ 2007-11-10 12:47 UTC (permalink / raw)
  To: Martin Rudalics; +Cc: Emacs Devel

On 11/10/07, Martin Rudalics <rudalics@gmx.at> wrote:

> CVSROOT:        /sources/emacs
> Module name:    emacs
> Changes by:     Martin Rudalics <m061211>       07/11/10 09:58:35
>
> Index: help-fns.el

C-h f car [RET] => "Wrong type argument: stringp, t"
C-h v * [RET] => "Wrong type argument: stringp, t"

The error happens in (with-current-buffer standard-output ...) because
standard-output is not bound to buffer *Help*, like it was before.

             Juanma

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

* Re: [Emacs-diffs] Changes to emacs/lisp/help-fns.el,v
  2007-11-10 12:47 ` [Emacs-diffs] Changes to emacs/lisp/help-fns.el,v Juanma Barranquero
@ 2007-11-10 13:23   ` martin rudalics
  2007-11-10 20:45     ` Juanma Barranquero
  2007-11-10 20:55     ` Robert J. Chassell
  0 siblings, 2 replies; 7+ messages in thread
From: martin rudalics @ 2007-11-10 13:23 UTC (permalink / raw)
  To: Juanma Barranquero; +Cc: Emacs Devel

 > C-h f car [RET] => "Wrong type argument: stringp, t"
 > C-h v * [RET] => "Wrong type argument: stringp, t"
 >
 > The error happens in (with-current-buffer standard-output ...) because
 > standard-output is not bound to buffer *Help*, like it was before.

I can't reproduce that.  Does it help when you remake the autoloads?
`with-output-to-temp-buffer' had the argument (help-buffer) here which
should evaluate to *Help*.  Can you understand why it doesn't in your
case?

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

* Re: [Emacs-diffs] Changes to emacs/lisp/help-fns.el,v
  2007-11-10 13:23   ` martin rudalics
@ 2007-11-10 20:45     ` Juanma Barranquero
  2007-11-11  9:33       ` martin rudalics
  2007-11-10 20:55     ` Robert J. Chassell
  1 sibling, 1 reply; 7+ messages in thread
From: Juanma Barranquero @ 2007-11-10 20:45 UTC (permalink / raw)
  To: martin rudalics; +Cc: Emacs Devel

On 11/10/07, martin rudalics <rudalics@gmx.at> wrote:

> I can't reproduce that.  Does it help when you remake the autoloads?

Now, this is weird. The bug was present after several rounds of "make
cvs-update" (which does the recompile and autoload targets, among
other things) followed by "make install".

However, it has disappeared after manually recompiling help-fns.el...

             Juanma

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

* Re: [Emacs-diffs] Changes to emacs/lisp/help-fns.el,v
  2007-11-10 13:23   ` martin rudalics
  2007-11-10 20:45     ` Juanma Barranquero
@ 2007-11-10 20:55     ` Robert J. Chassell
  2007-11-11  9:37       ` martin rudalics
  1 sibling, 1 reply; 7+ messages in thread
From: Robert J. Chassell @ 2007-11-10 20:55 UTC (permalink / raw)
  To: emacs-devel

    C-h f car [RET] => "Wrong type argument: stringp, t"

I got that, but then I rebuilt Emacs using `make clean' and `make
bootstrap' (which I try to avoid since it takes me so long) and now my
`emacs -Q -D' works fine.  Now, I get the proper result for `car'.

  Today's GNU Emacs CVS snapshot, Sat, 2007 Nov 10  20:05 UTC
  GNU Emacs 23.0.50.1 (i686-pc-linux-gnu, GTK+ Version 2.12.1)

-- 
    Robert J. Chassell                          GnuPG Key ID: 004B4AC8
    bob@rattlesnake.com                         bob@gnu.org
    http://www.rattlesnake.com                  http://www.teak.cc

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

* Re: [Emacs-diffs] Changes to emacs/lisp/help-fns.el,v
  2007-11-10 20:45     ` Juanma Barranquero
@ 2007-11-11  9:33       ` martin rudalics
  2007-11-11 13:36         ` Juanma Barranquero
  0 siblings, 1 reply; 7+ messages in thread
From: martin rudalics @ 2007-11-11  9:33 UTC (permalink / raw)
  To: Juanma Barranquero; +Cc: Emacs Devel

 > Now, this is weird. The bug was present after several rounds of "make
 > cvs-update" (which does the recompile and autoload targets, among
 > other things) followed by "make install".

I never do that but if it recompiles before making the autoloads,
wouldn't that fail?  `help-buffer' is in help-mode.el but was not
autoloaded before, probably because only `with-output-to-temp-buffer'
needed it (I fail to understand how that worked).  I'm reluctant to put
any requires in help.el (it used to require `view-mode' once) to avoid
recursing.  If you have any suggestions ...

 > However, it has disappeared after manually recompiling help-fns.el...

Does that mean you still see it with `describe-char' or `describe-face'?
Or did you recompile them too?

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

* Re: [Emacs-diffs] Changes to emacs/lisp/help-fns.el,v
  2007-11-10 20:55     ` Robert J. Chassell
@ 2007-11-11  9:37       ` martin rudalics
  0 siblings, 0 replies; 7+ messages in thread
From: martin rudalics @ 2007-11-11  9:37 UTC (permalink / raw)
  To: bob; +Cc: emacs-devel

 >     C-h f car [RET] => "Wrong type argument: stringp, t"
 >
 > I got that, but then I rebuilt Emacs using `make clean' and `make
 > bootstrap' (which I try to avoid since it takes me so long) and now my
 > `emacs -Q -D' works fine.  Now, I get the proper result for `car'.

In fact `make bootstrap' is what I tested before checking this in - it
takes more than an hour on my system.  Sorry for the inconvenience.

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

* Re: [Emacs-diffs] Changes to emacs/lisp/help-fns.el,v
  2007-11-11  9:33       ` martin rudalics
@ 2007-11-11 13:36         ` Juanma Barranquero
  0 siblings, 0 replies; 7+ messages in thread
From: Juanma Barranquero @ 2007-11-11 13:36 UTC (permalink / raw)
  To: martin rudalics; +Cc: Emacs Devel

On 11/11/07, martin rudalics <rudalics@gmx.at> wrote:

> I never do that but if it recompiles before making the autoloads,
> wouldn't that fail?  `help-buffer' is in help-mode.el but was not
> autoloaded before, probably because only `with-output-to-temp-buffer'
> needed it (I fail to understand how that worked).

Aha.

> Does that mean you still see it with `describe-char' or `describe-face'?

I still saw it with describe-key. At that point I bootstrapped ;)

             Juanma

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

end of thread, other threads:[~2007-11-11 13:36 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <E1Iqn6p-0005zm-K5@cvs.savannah.gnu.org>
2007-11-10 12:47 ` [Emacs-diffs] Changes to emacs/lisp/help-fns.el,v Juanma Barranquero
2007-11-10 13:23   ` martin rudalics
2007-11-10 20:45     ` Juanma Barranquero
2007-11-11  9:33       ` martin rudalics
2007-11-11 13:36         ` Juanma Barranquero
2007-11-10 20:55     ` Robert J. Chassell
2007-11-11  9:37       ` martin rudalics

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

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

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