unofficial mirror of emacs-devel@gnu.org 
 help / color / mirror / code / Atom feed
* Re: [Emacs-diffs] /srv/bzr/emacs/trunk r100758: Convert DEFUNs to  standard C.
       [not found] <E1OWzPI-0004ZV-QF@internal.in.savannah.gnu.org>
@ 2010-07-09  0:17 ` Juanma Barranquero
  2010-07-09  0:25   ` Dan Nicolaescu
  0 siblings, 1 reply; 5+ messages in thread
From: Juanma Barranquero @ 2010-07-09  0:17 UTC (permalink / raw)
  To: Dan Nicolaescu; +Cc: Emacs developers

Some fallout from this change:

> revno: 100758
> committer: Dan Nicolaescu <dann@ics.uci.edu>
> branch nick: trunk
> timestamp: Thu 2010-07-08 14:25:08 -0700
> message:
>  Convert DEFUNs to standard C.

C-h f rename-buffer <RET>

  rename-buffer is an interactive built-in function in `C source code'.

  (rename-buffer REGISTER &optional LISP-OBJECT NEWNAME LISP-OBJECT UNIQUE)

and

 emacs -Q -l uniquify
 M-x rename-buffer <RET> test <RET>

 => Wrong number of arguments: ad-Orig-rename-buffer, 5



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

* Re: [Emacs-diffs] /srv/bzr/emacs/trunk r100758: Convert DEFUNs to standard C.
  2010-07-09  0:17 ` [Emacs-diffs] /srv/bzr/emacs/trunk r100758: Convert DEFUNs to standard C Juanma Barranquero
@ 2010-07-09  0:25   ` Dan Nicolaescu
  2010-07-09  0:32     ` Juanma Barranquero
  0 siblings, 1 reply; 5+ messages in thread
From: Dan Nicolaescu @ 2010-07-09  0:25 UTC (permalink / raw)
  To: Juanma Barranquero; +Cc: Emacs developers

Juanma Barranquero <lekktu@gmail.com> writes:

> Some fallout from this change:
>
>> revno: 100758
>> committer: Dan Nicolaescu <dann@ics.uci.edu>
>> branch nick: trunk
>> timestamp: Thu 2010-07-08 14:25:08 -0700
>> message:
>>  Convert DEFUNs to standard C.
>
> C-h f rename-buffer <RET>
>
>   rename-buffer is an interactive built-in function in `C source code'.
>
>   (rename-buffer REGISTER &optional LISP-OBJECT NEWNAME LISP-OBJECT UNIQUE)

make-docfile needs updating... Ken Raeburn said a few days ago he'd look into it.

> and
>
>  emacs -Q -l uniquify
>  M-x rename-buffer <RET> test <RET>
>
>  => Wrong number of arguments: ad-Orig-rename-buffer, 5

No idea about this one.  Can you please take a look?



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

* Re: [Emacs-diffs] /srv/bzr/emacs/trunk r100758: Convert DEFUNs to  standard C.
  2010-07-09  0:25   ` Dan Nicolaescu
@ 2010-07-09  0:32     ` Juanma Barranquero
  2010-07-09  0:40       ` Dan Nicolaescu
  2010-07-09  1:12       ` Dan Nicolaescu
  0 siblings, 2 replies; 5+ messages in thread
From: Juanma Barranquero @ 2010-07-09  0:32 UTC (permalink / raw)
  To: Dan Nicolaescu; +Cc: Emacs developers

On Fri, Jul 9, 2010 at 02:25, Dan Nicolaescu <dann@gnu.org> wrote:

> make-docfile needs updating... Ken Raeburn said a few days ago he'd look into it.

Ah, OK.

>>  => Wrong number of arguments: ad-Orig-rename-buffer, 5
>
> No idea about this one.

Debugger entered--Lisp error: (wrong-number-of-arguments
ad-Orig-rename-buffer 5)
  (ad-Orig-rename-buffer register lisp-object newname lisp-object unique)
  (setq ad-return-value (ad-Orig-rename-buffer register lisp-object
newname lisp-object unique))
  (let (ad-return-value) (setq ad-return-value (ad-Orig-rename-buffer
register lisp-object newname lisp-object unique))
(uniquify-maybe-rerationalize-w/o-cb) (if (null lisp-object) (setq
uniquify-managed nil) (when uniquify-buffer-name-style ... ...))
ad-return-value)
  rename-buffer("test" nil)
  call-interactively(rename-buffer t nil)
  execute-extended-command(nil)
  call-interactively(execute-extended-command nil nil)

> Can you please take a look?

Not now, sorry; 'm leaving for holidays in a few hours.


    Juanma



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

* Re: [Emacs-diffs] /srv/bzr/emacs/trunk r100758: Convert DEFUNs to standard C.
  2010-07-09  0:32     ` Juanma Barranquero
@ 2010-07-09  0:40       ` Dan Nicolaescu
  2010-07-09  1:12       ` Dan Nicolaescu
  1 sibling, 0 replies; 5+ messages in thread
From: Dan Nicolaescu @ 2010-07-09  0:40 UTC (permalink / raw)
  To: Juanma Barranquero; +Cc: Emacs developers

Juanma Barranquero <lekktu@gmail.com> writes:

> On Fri, Jul 9, 2010 at 02:25, Dan Nicolaescu <dann@gnu.org> wrote:
>
>> make-docfile needs updating... Ken Raeburn said a few days ago he'd look into it.
>
> Ah, OK.
>
>>>  => Wrong number of arguments: ad-Orig-rename-buffer, 5
>>
>> No idea about this one.
>
> Debugger entered--Lisp error: (wrong-number-of-arguments

I took a quick look, and it's due to make-docfile.
Unfortunately I don't know when I'll have time to look at fixing make-docfile...



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

* Re: [Emacs-diffs] /srv/bzr/emacs/trunk r100758: Convert DEFUNs to standard C.
  2010-07-09  0:32     ` Juanma Barranquero
  2010-07-09  0:40       ` Dan Nicolaescu
@ 2010-07-09  1:12       ` Dan Nicolaescu
  1 sibling, 0 replies; 5+ messages in thread
From: Dan Nicolaescu @ 2010-07-09  1:12 UTC (permalink / raw)
  To: Juanma Barranquero; +Cc: Emacs developers

Juanma Barranquero <lekktu@gmail.com> writes:

> On Fri, Jul 9, 2010 at 02:25, Dan Nicolaescu <dann@gnu.org> wrote:
>
>> make-docfile needs updating... Ken Raeburn said a few days ago he'd look into it.
>
> Ah, OK.
>
>>>  => Wrong number of arguments: ad-Orig-rename-buffer, 5
>>
>> No idea about this one.
>
> Debugger entered--Lisp error: (wrong-number-of-arguments

I have a fix, commit in progress.




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

end of thread, other threads:[~2010-07-09  1:12 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <E1OWzPI-0004ZV-QF@internal.in.savannah.gnu.org>
2010-07-09  0:17 ` [Emacs-diffs] /srv/bzr/emacs/trunk r100758: Convert DEFUNs to standard C Juanma Barranquero
2010-07-09  0:25   ` Dan Nicolaescu
2010-07-09  0:32     ` Juanma Barranquero
2010-07-09  0:40       ` Dan Nicolaescu
2010-07-09  1:12       ` Dan Nicolaescu

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).