all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* bug#825: 23.0.60; M-1 C-h a f i l e
@ 2008-08-29 19:27 ` Michael Heerdegen
  2008-08-30  2:35   ` bug#825: marked as done (23.0.60; M-1 C-h a f i l e) Emacs bug Tracking System
  0 siblings, 1 reply; 4+ messages in thread
From: Michael Heerdegen @ 2008-08-29 19:27 UTC (permalink / raw)
  To: emacs-pretest-bug

Evaluating the following causes an error:

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

Backtrace:

Debugger entered--Lisp error: (void-function url-https-expand-file-name)
  documentation(url-https-expand-file-name t)
  apropos-command(("file") 1)
  eval((apropos-command (quote ("file")) 1))
  eval-expression((apropos-command (quote ("file")) 1) nil)
  call-interactively(eval-expression nil nil)

This happend with the actual CVS release emacs -q, but not with my
emacs 22.2.1.







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

* bug#825: 23.0.60; M-1 C-h a f i l e
@ 2008-08-29 22:37 Chong Yidong
  2008-08-29 23:06 ` Glenn Morris
  0 siblings, 1 reply; 4+ messages in thread
From: Chong Yidong @ 2008-08-29 22:37 UTC (permalink / raw)
  To: Michael Heerdegen; +Cc: 825

I can't reproduce this.  Neither `(apropos-command (quote ("file")) 1)'
nor `M-1 C-h a file RET' raise an error.  Could you give a precise
recipe, starting from `emacs -Q'?






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

* bug#825: 23.0.60; M-1 C-h a f i l e
  2008-08-29 22:37 bug#825: 23.0.60; M-1 C-h a f i l e Chong Yidong
@ 2008-08-29 23:06 ` Glenn Morris
  0 siblings, 0 replies; 4+ messages in thread
From: Glenn Morris @ 2008-08-29 23:06 UTC (permalink / raw)
  To: Chong Yidong; +Cc: 825

Chong Yidong wrote:

> I can't reproduce this.  Neither `(apropos-command (quote ("file")) 1)'
> nor `M-1 C-h a file RET' raise an error.  Could you give a precise
> recipe, starting from `emacs -Q'?

In 22 or trunk:

emacs -Q
C-h f url-https-expand-file-name  ; tab-completable
Symbol's function definition is void: url-http-expand-file-name

In url-http.el, url-https-expand-file-name is an autoloaded alias to
an alias to a function (url-default-expander) defined in another file.






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

* bug#825: marked as done (23.0.60; M-1 C-h a f i l e)
  2008-08-29 19:27 ` bug#825: 23.0.60; M-1 C-h a f i l e Michael Heerdegen
@ 2008-08-30  2:35   ` Emacs bug Tracking System
  0 siblings, 0 replies; 4+ messages in thread
From: Emacs bug Tracking System @ 2008-08-30  2:35 UTC (permalink / raw)
  To: Glenn Morris

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


Your message dated Fri, 29 Aug 2008 22:24:33 -0400
with message-id <amyivdyu6.fsf@fencepost.gnu.org>
and subject line Re: bug#825: 23.0.60; M-1 C-h a f i l e
has caused the Emacs bug report #825,
regarding 23.0.60; M-1 C-h a f i l e
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.)


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

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

From: Michael Heerdegen <michael_heerdegen@web.de>
To: emacs-pretest-bug@gnu.org
Subject: 23.0.60; M-1 C-h a f i l e
Date: Fri, 29 Aug 2008 21:27:40 +0200
Message-ID: <1220038060.627587.12331@green>

Evaluating the following causes an error:

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

Backtrace:

Debugger entered--Lisp error: (void-function url-https-expand-file-name)
  documentation(url-https-expand-file-name t)
  apropos-command(("file") 1)
  eval((apropos-command (quote ("file")) 1))
  eval-expression((apropos-command (quote ("file")) 1) nil)
  call-interactively(eval-expression nil nil)

This happend with the actual CVS release emacs -q, but not with my
emacs 22.2.1.




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

From: Glenn Morris <rgm@gnu.org>
To: 825-done@emacsbugs.donarmstrong.com
Subject: Re: bug#825: 23.0.60; M-1 C-h a f i l e
Date: Fri, 29 Aug 2008 22:24:33 -0400
Message-ID: <amyivdyu6.fsf@fencepost.gnu.org>


2008-08-30  Glenn Morris  <rgm@gnu.org>

    * url-http.el (url-https-expand-file-name): Resolve directly to
    url-default-expander rather than via another alias.
    (url-default-expander): Autoload an autoload.  (Bug#825).


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

end of thread, other threads:[~2008-08-30  2:35 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <amyivdyu6.fsf@fencepost.gnu.org>
2008-08-29 19:27 ` bug#825: 23.0.60; M-1 C-h a f i l e Michael Heerdegen
2008-08-30  2:35   ` bug#825: marked as done (23.0.60; M-1 C-h a f i l e) Emacs bug Tracking System
2008-08-29 22:37 bug#825: 23.0.60; M-1 C-h a f i l e Chong Yidong
2008-08-29 23:06 ` Glenn Morris

Code repositories for project(s) associated with this external index

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

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.