unofficial mirror of bug-gnu-emacs@gnu.org 
 help / color / mirror / code / Atom feed
* bug#856: 23.0.60; apropos-command and broken fun aliases
@ 2008-09-01 21:15 ` Michael Heerdegen
  2008-09-01 21:30   ` Glenn Morris
  2008-09-01 21:55   ` bug#856: marked as done (23.0.60; apropos-command and broken fun aliases) Emacs bug Tracking System
  0 siblings, 2 replies; 3+ messages in thread
From: Michael Heerdegen @ 2008-09-01 21:15 UTC (permalink / raw)
  To: emacs-pretest-bug

On my system, the following raises an error when evalled with CVS
emacs -Q:

(apropos-command (quote ("vc")) 1)


Backtrace:

Debugger entered--Lisp error: (void-function vc-previous-version)
  documentation(vc-previous-version t)
  apropos-command(("vc") 1)
  call-interactively(apropos-command nil nil)


There are actually two problems related to this bug:

(1) In vc-hooks.el, there is a definition

(define-obsolete-function-alias
 'vc-previous-version 'vc-previous-revision "23.1"),

but the function `vc-previous-revision' is not defined.

(2) `apropos-command' should handle errors caused by broken function
aliases. Else, cases like (1) make `apropos-command' partly unusable.



In GNU Emacs 23.0.60.2 (i686-pc-linux-gnu, GTK+ Version 2.12.11)
 of 2008-08-29 on green
Windowing system distributor `The X.Org Foundation', version 11.0.10402000






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

* bug#856: 23.0.60; apropos-command and broken fun aliases
  2008-09-01 21:15 ` bug#856: 23.0.60; apropos-command and broken fun aliases Michael Heerdegen
@ 2008-09-01 21:30   ` Glenn Morris
  2008-09-01 21:55   ` bug#856: marked as done (23.0.60; apropos-command and broken fun aliases) Emacs bug Tracking System
  1 sibling, 0 replies; 3+ messages in thread
From: Glenn Morris @ 2008-09-01 21:30 UTC (permalink / raw)
  To: michael_heerdegen; +Cc: 856

Michael Heerdegen wrote:

> (2) `apropos-command' should handle errors caused by broken function
> aliases. Else, cases like (1) make `apropos-command' partly unusable.

I fixed this a few days ago.






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

* bug#856: marked as done (23.0.60; apropos-command and broken fun  aliases)
  2008-09-01 21:15 ` bug#856: 23.0.60; apropos-command and broken fun aliases Michael Heerdegen
  2008-09-01 21:30   ` Glenn Morris
@ 2008-09-01 21:55   ` Emacs bug Tracking System
  1 sibling, 0 replies; 3+ messages in thread
From: Emacs bug Tracking System @ 2008-09-01 21:55 UTC (permalink / raw)
  To: Glenn Morris

[-- Attachment #1: Type: text/plain, Size: 868 bytes --]


Your message dated Mon, 01 Sep 2008 17:45:04 -0400
with message-id <78tzczwnfj.fsf@fencepost.gnu.org>
and subject line Re: bug#856: 23.0.60; apropos-command and broken fun aliases
has caused the Emacs bug report #856,
regarding 23.0.60; apropos-command and broken fun aliases
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact don@donarmstrong.com
immediately.)


-- 
856: http://emacsbugs.donarmstrong.com/cgi-bin/bugreport.cgi?bug=856
Emacs Bug Tracking System
Contact don@donarmstrong.com with problems

[-- Attachment #2: Type: message/rfc822, Size: 2998 bytes --]

From: Michael Heerdegen <michael_heerdegen@web.de>
To: emacs-pretest-bug@gnu.org
Subject: 23.0.60; apropos-command and broken fun aliases
Date: Mon, 1 Sep 2008 23:15:28 +0200
Message-ID: <1220303728.447523.3814@green>

On my system, the following raises an error when evalled with CVS
emacs -Q:

(apropos-command (quote ("vc")) 1)


Backtrace:

Debugger entered--Lisp error: (void-function vc-previous-version)
  documentation(vc-previous-version t)
  apropos-command(("vc") 1)
  call-interactively(apropos-command nil nil)


There are actually two problems related to this bug:

(1) In vc-hooks.el, there is a definition

(define-obsolete-function-alias
 'vc-previous-version 'vc-previous-revision "23.1"),

but the function `vc-previous-revision' is not defined.

(2) `apropos-command' should handle errors caused by broken function
aliases. Else, cases like (1) make `apropos-command' partly unusable.



In GNU Emacs 23.0.60.2 (i686-pc-linux-gnu, GTK+ Version 2.12.11)
 of 2008-08-29 on green
Windowing system distributor `The X.Org Foundation', version 11.0.10402000



[-- Attachment #3: Type: message/rfc822, Size: 1933 bytes --]

From: Glenn Morris <rgm@gnu.org>
To: michael_heerdegen@web.de
Cc: 856-done@emacsbugs.donarmstrong.com
Subject: Re: bug#856: 23.0.60; apropos-command and broken fun aliases
Date: Mon, 01 Sep 2008 17:45:04 -0400
Message-ID: <78tzczwnfj.fsf@fencepost.gnu.org>

Michael Heerdegen wrote:

> (1) In vc-hooks.el, there is a definition
>
> (define-obsolete-function-alias
>  'vc-previous-version 'vc-previous-revision "23.1"),
>
> but the function `vc-previous-revision' is not defined.

2008-09-01  Glenn Morris  <rgm@gnu.org>

            * vc-hooks.el (vc-previous-version): Move alias to vc.el.
            * vc.el (vc-default-previous-version): Move alias here
            * from vc-hooks, and fix name typos.  (Bug#856)


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

end of thread, other threads:[~2008-09-01 21:55 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <78tzczwnfj.fsf@fencepost.gnu.org>
2008-09-01 21:15 ` bug#856: 23.0.60; apropos-command and broken fun aliases Michael Heerdegen
2008-09-01 21:30   ` Glenn Morris
2008-09-01 21:55   ` bug#856: marked as done (23.0.60; apropos-command and broken fun aliases) Emacs bug Tracking System

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