GNU bug report logs - #2270
23.0.90; find-library: (1) doc string, (2) other-window version

Previous Next

Package: emacs;

Reported by: "Drew Adams" <drew.adams <at> oracle.com>

Date: Tue, 10 Feb 2009 18:25:04 UTC

Severity: wishlist

Tags: fixed

Fixed in version 26.1

Done: Lars Ingebrigtsen <larsi <at> gnus.org>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 2270 in the body.
You can then email your comments to 2270 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to bug-submit-list <at> lists.donarmstrong.com, Emacs Bugs <bug-gnu-emacs <at> gnu.org>:
bug#2270; Package emacs. (Tue, 10 Feb 2009 18:25:05 GMT) Full text and rfc822 format available.

Acknowledgement sent to "Drew Adams" <drew.adams <at> oracle.com>:
New bug report received and forwarded. Copy sent to Emacs Bugs <bug-gnu-emacs <at> gnu.org>. (Tue, 10 Feb 2009 18:25:05 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> emacsbugs.donarmstrong.com (full text, mbox):

From: "Drew Adams" <drew.adams <at> oracle.com>
To: <emacs-pretest-bug <at> gnu.org>
Subject: 23.0.90; find-library: (1) doc string, (2) other-window version
Date: Tue, 10 Feb 2009 10:23:49 -0800
emacs -Q
 
1. The doc string of find-library says only this:
"Find the elisp source of LIBRARY."
 
Hardly very helpful. What is LIBRARY? A file name as a string?
Absolute or relative? A symbol naming a feature? A symbol naming a
relative file name? All of the above?
 
Also, "elisp" should be "Emacs-Lisp".
 

2. Please add this command (or equivalent), after adjusting its doc
string also to explain what LIBRARY is:
 
(defun find-library-other-window (library)
  "Find the Emacs-Lisp source of LIBRARY in another window."
  (interactive
   (let* ((path (cons (or find-function-source-path load-path)
        (find-library-suffixes)))
   (def (if (eq (function-called-at-point) 'require)
     (save-excursion (backward-up-list)
                                   (forward-char)
                                   (backward-sexp -2)
                                   (thing-at-point 'symbol))
   (thing-at-point 'symbol))))
     (when def (setq def (and (locate-file-completion def path 'test) def)))
     (list (completing-read "Library name: " 'locate-file-completion
                            path nil nil nil def))))
  (let ((buf (find-file-noselect (find-library-name library))))
    (pop-to-buffer buf 'other-window)))
 

In GNU Emacs 23.0.90.1 (i386-mingw-nt5.1.2600)
 of 2009-02-01 on SOFT-MJASON
Windowing system distributor `Microsoft Corp.', version 5.1.2600
configured using `configure --with-gcc (3.4)'
 





Information forwarded to bug-submit-list <at> lists.donarmstrong.com, Emacs Bugs <bug-gnu-emacs <at> gnu.org>:
bug#2270; Package emacs. (Wed, 11 Feb 2009 02:35:03 GMT) Full text and rfc822 format available.

Acknowledgement sent to Chong Yidong <cyd <at> stupidchicken.com>:
Extra info received and forwarded to list. Copy sent to Emacs Bugs <bug-gnu-emacs <at> gnu.org>. (Wed, 11 Feb 2009 02:35:03 GMT) Full text and rfc822 format available.

Message #10 received at 2270 <at> emacsbugs.donarmstrong.com (full text, mbox):

From: Chong Yidong <cyd <at> stupidchicken.com>
To: "Drew Adams" <drew.adams <at> oracle.com>
Cc: 2270 <at> debbugs.gnu.org
Subject: Re: 23.0.90; find-library: (1) doc string, (2) other-window version
Date: Tue, 10 Feb 2009 21:27:10 -0500
> 1. The doc string of find-library says only this:
> "Find the elisp source of LIBRARY."
>
> Hardly very helpful.

I've clarified it.

> 2. Please add this command (or equivalent), after adjusting its doc
> string also to explain what LIBRARY is:

After the release, maybe.




Severity set to `wishlist' from `normal' Request was from Chong Yidong <cyd <at> stupidchicken.com> to control <at> emacsbugs.donarmstrong.com. (Wed, 11 Feb 2009 02:35:05 GMT) Full text and rfc822 format available.

Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#2270; Package emacs. (Wed, 24 Oct 2012 17:45:01 GMT) Full text and rfc822 format available.

Message #15 received at 2270 <at> debbugs.gnu.org (full text, mbox):

From: "Drew Adams" <drew.adams <at> oracle.com>
To: "'Chong Yidong'" <cyd <at> stupidchicken.com>
Cc: 2270 <at> emacsbugs.donarmstrong.com, 2270 <at> debbugs.gnu.org
Subject: [PATCH] bug#2270, RE: 23.0.90;
	find-library:... (2) other-window version
Date: Wed, 24 Oct 2012 10:41:59 -0700
> Sent: Tuesday, February 10, 2009 6:27 PM
>
> > 2. Please add this command (or equivalent), after adjusting its doc
> >    string also to explain what LIBRARY is:
> 
> After the release, maybe.

Clearly, that upcoming release was many moon ago.

I repeat my suggestion to add command `find-library-other-window'.
I also suggest that it be bound by default to `C-x 4 l'.

I've used this command & key forever, and wouldn't be without it.
(And I rarely have a need anymore for same-window `find-library'.)

---

(defun find-library-other-window (library)
  "Find the Emacs-Lisp source of LIBRARY in another window."
  (interactive
   (progn
     (require 'find-func)
     (let* ((path  (cons (or find-function-source-path load-path)
                         (find-library-suffixes)))
            (def   (if (eq (function-called-at-point) 'require)
                       (save-excursion (backward-up-list)
                                       (forward-char)
                                       (backward-sexp -2)
                                       (thing-at-point 'symbol))
                     (thing-at-point 'symbol))))
       (when def (setq def  (and (locate-file-completion def path 'test)
                                 def)))
       (list (completing-read "Library name: " 'locate-file-completion
                              path nil nil nil def)))))
  (let ((buf  (find-file-noselect (find-library-name library))))
    (pop-to-buffer buf 'other-window)))





Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#2270; Package emacs. (Wed, 24 Oct 2012 17:45:02 GMT) Full text and rfc822 format available.

Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#2270; Package emacs. (Wed, 24 Oct 2012 19:42:02 GMT) Full text and rfc822 format available.

Message #21 received at 2270 <at> debbugs.gnu.org (full text, mbox):

From: "Drew Adams" <drew.adams <at> oracle.com>
To: "'Stefan Monnier'" <monnier <at> iro.umontreal.ca>
Cc: 2270 <at> emacsbugs.donarmstrong.com, 'Chong Yidong' <cyd <at> stupidchicken.com>,
	2270 <at> debbugs.gnu.org
Subject: RE: bug#2270: [PATCH] bug#2270, RE: 23.0.90;
	find-library:... (2) other-window version
Date: Wed, 24 Oct 2012 12:38:51 -0700
> > I repeat my suggestion to add command `find-library-other-window'.
> 
> As mentioned in other threads, I'd rather we add a "use other 
> window for next command" prefix command (which we could bind
> to C-x 4), I could live with adding yet another such foo-other-window
> command since we don't yet have such a prefix command.

Yes, please add it while waiting for your ideal to bless the planet. ;-)

> > I also suggest that it be bound by default to `C-x 4 l'.
> 
> Since find-library is not bound to any key, I don't think
> find-library-other-window should be bound either.

"Since"?  The one doesn't follow from the other.  There is no logical reason why
we cannot have one command bound and not the other.  It depends on what we
expect the most common uses to be.  I proposed a key for the other-window
version because I don't think the same-window version is very useful.  But
that's me.

In any case, FWIW, I disagree that this should not be bound by default.

But if you are coming from the point of view that things must follow your
proposed new _implementation_, then such a hard-and-fast rule pretty much
follows, I'm guessing.  In spite of the fact that it might not be useful/needed
in all cases.  Hammer therefore nail?

> > I've used this command & key forever, and wouldn't be without it.
> > (And I rarely have a need anymore for same-window `find-library'.)
> 
> In my experience, people rarely need both the "same-window" and the
> "other-window" forms of a command, indeed.

Disagree, as one of the "people".  In this case, yes (this person rarely uses
the same-window version of this particular command).  But not in general.  I use
BOTH versions of most same- and other-window commands.

You keep repeating that supposition, BTW, but so far haven't provided any data
backing it up.  I, for one, would find it hard to believe that many people use
only `C-x C-f' or `C-x 4 f', but not both.

Perhaps this too is hammer therefore nail?  Does your proposed implementation
perhaps require a user to opt for one or the other for all uses?

Whatever.  I have the command/key for my own use.





Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#2270; Package emacs. (Wed, 24 Oct 2012 19:42:02 GMT) Full text and rfc822 format available.

Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#2270; Package emacs. (Wed, 24 Oct 2012 20:46:01 GMT) Full text and rfc822 format available.

Message #27 received at 2270 <at> debbugs.gnu.org (full text, mbox):

From: Stefan Monnier <monnier <at> iro.umontreal.ca>
To: "Drew Adams" <drew.adams <at> oracle.com>
Cc: 2270 <at> emacsbugs.donarmstrong.com, 'Chong Yidong' <cyd <at> stupidchicken.com>,
	2270 <at> debbugs.gnu.org
Subject: Re: bug#2270: [PATCH] bug#2270, RE: 23.0.90;
	find-library:... (2) other-window version
Date: Wed, 24 Oct 2012 16:42:56 -0400
> Yes, please add it while waiting for your ideal to bless the planet. ;-)

Please provide a proper patch (i.e. not one that doesn't simply
duplicate find-library's code.)

> only `C-x C-f' or `C-x 4 f', but not both.

Actually, adding a C-x 4 prefix that works for "all" commands would make
sure that both options are always available.


        Stefan




Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#2270; Package emacs. (Wed, 24 Oct 2012 20:46:02 GMT) Full text and rfc822 format available.

Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#2270; Package emacs. (Wed, 24 Oct 2012 21:23:02 GMT) Full text and rfc822 format available.

Message #33 received at 2270 <at> debbugs.gnu.org (full text, mbox):

From: Stefan Monnier <monnier <at> iro.umontreal.ca>
To: "Drew Adams" <drew.adams <at> oracle.com>
Cc: 2270 <at> emacsbugs.donarmstrong.com, 'Chong Yidong' <cyd <at> stupidchicken.com>,
	2270 <at> debbugs.gnu.org
Subject: Re: bug#2270: [PATCH] bug#2270, RE: 23.0.90;
	find-library:... (2) other-window version
Date: Wed, 24 Oct 2012 17:20:39 -0400
> Please provide a proper patch (i.e. not one that doesn't simply
                                      ^^^
> duplicate find-library's code.)

Sorry for the extra `not'.


        Stefan




Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#2270; Package emacs. (Wed, 24 Oct 2012 21:23:02 GMT) Full text and rfc822 format available.

Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#2270; Package emacs. (Wed, 24 Oct 2012 21:28:02 GMT) Full text and rfc822 format available.

Message #39 received at 2270 <at> debbugs.gnu.org (full text, mbox):

From: "Drew Adams" <drew.adams <at> oracle.com>
To: "'Stefan Monnier'" <monnier <at> iro.umontreal.ca>
Cc: 2270 <at> emacsbugs.donarmstrong.com, 'Chong Yidong' <cyd <at> stupidchicken.com>,
	2270 <at> debbugs.gnu.org
Subject: RE: bug#2270: [PATCH] bug#2270, RE: 23.0.90;
	find-library:... (2) other-window version
Date: Wed, 24 Oct 2012 14:25:14 -0700
> Please provide a proper patch (i.e. not one that doesn't simply
> duplicate find-library's code.)

Dunno what you mean.  Do you just mean a proper patch (e.g. `diff' output) or
are you saying that you want code that is different from what I sent?
 
> > only `C-x C-f' or `C-x 4 f', but not both.
> 
> Actually, adding a C-x 4 prefix that works for "all" commands 
> would make sure that both options are always available.

That's fine.  I already spoke up in favor of your idea (in the abstract).

I assume that it will be just as easy as now for a user to bind a different
function to one or the other key sequence, without affecting the other?

IOW, today a user can easily bind `C-x 4 f' to `butterfly' and leave `C-x C-f'
bound to `find-file'.  I assume that will be just as easy after your
implementation.  Likewise, for unbinding one of the two but not the other.





Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#2270; Package emacs. (Wed, 24 Oct 2012 21:28:02 GMT) Full text and rfc822 format available.

Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#2270; Package emacs. (Wed, 27 Apr 2016 17:27:01 GMT) Full text and rfc822 format available.

Message #45 received at 2270 <at> debbugs.gnu.org (full text, mbox):

From: Lars Ingebrigtsen <larsi <at> gnus.org>
To: "Drew Adams" <drew.adams <at> oracle.com>
Cc: 2270 <at> emacsbugs.donarmstrong.com, 'Chong Yidong' <cyd <at> stupidchicken.com>,
 'Stefan Monnier' <monnier <at> iro.umontreal.ca>, 2270 <at> debbugs.gnu.org
Subject: Re: bug#2270: [PATCH] bug#2270, RE: 23.0.90;
 find-library:... (2) other-window version
Date: Wed, 27 Apr 2016 19:26:19 +0200
I've now added a prefix argument to pop to a different window.  I've
also cleaned up the switch-to-buffer error handling code, which I think
isn't necessary any more after Martin's window fixes...

-- 
(domestic pets only, the antidote for overdose, milk.)
   bloggy blog: http://lars.ingebrigtsen.no





Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#2270; Package emacs. (Wed, 27 Apr 2016 17:27:02 GMT) Full text and rfc822 format available.

Added tag(s) fixed. Request was from Lars Ingebrigtsen <larsi <at> gnus.org> to control <at> debbugs.gnu.org. (Wed, 27 Apr 2016 17:27:02 GMT) Full text and rfc822 format available.

bug marked as fixed in version 25.2, send any further explanations to 2270 <at> debbugs.gnu.org and "Drew Adams" <drew.adams <at> oracle.com> Request was from Lars Ingebrigtsen <larsi <at> gnus.org> to control <at> debbugs.gnu.org. (Wed, 27 Apr 2016 17:27:02 GMT) Full text and rfc822 format available.

Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#2270; Package emacs. (Wed, 27 Apr 2016 17:35:01 GMT) Full text and rfc822 format available.

Message #55 received at 2270 <at> debbugs.gnu.org (full text, mbox):

From: Drew Adams <drew.adams <at> oracle.com>
To: Lars Ingebrigtsen <larsi <at> gnus.org>
Cc: 2270 <at> emacsbugs.donarmstrong.com, Chong Yidong <cyd <at> stupidchicken.com>,
 Stefan Monnier <monnier <at> iro.umontreal.ca>, 2270 <at> debbugs.gnu.org
Subject: RE: bug#2270: [PATCH] bug#2270, RE: 23.0.90; find-library:... (2)
 other-window version
Date: Wed, 27 Apr 2016 10:34:03 -0700 (PDT)
> I've now added a prefix argument to pop to a different window.  I've
> also cleaned up the switch-to-buffer error handling code, which I think
> isn't necessary any more after Martin's window fixes...

1. I would still prefer to have the other-window version bound to
   `C-x 4 l'.

2. I think that the other-window version is far more useful than
   the same-window version.  So if other-window behavior is available
   only via a prefix arg I'd prefer that it be the other way around:
   a prefix arg uses the same window; no prefix arg uses another
   window.  (Yes, that would be a change in the default behavior.)

(Anyway, thanks for adding the other-window behavior.)




Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#2270; Package emacs. (Wed, 27 Apr 2016 17:35:02 GMT) Full text and rfc822 format available.

Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#2270; Package emacs. (Wed, 27 Apr 2016 17:39:02 GMT) Full text and rfc822 format available.

Message #61 received at 2270 <at> debbugs.gnu.org (full text, mbox):

From: Lars Ingebrigtsen <larsi <at> gnus.org>
To: Drew Adams <drew.adams <at> oracle.com>
Cc: 2270 <at> emacsbugs.donarmstrong.com, Chong Yidong <cyd <at> stupidchicken.com>,
 Stefan Monnier <monnier <at> iro.umontreal.ca>, 2270 <at> debbugs.gnu.org
Subject: Re: bug#2270: [PATCH] bug#2270, RE: 23.0.90;
 find-library:... (2) other-window version
Date: Wed, 27 Apr 2016 19:38:02 +0200
Drew Adams <drew.adams <at> oracle.com> writes:

>> I've now added a prefix argument to pop to a different window.  I've
>> also cleaned up the switch-to-buffer error handling code, which I think
>> isn't necessary any more after Martin's window fixes...
>
> 1. I would still prefer to have the other-window version bound to
>    `C-x 4 l'.

`find-library' isn't bound to any key, but I think it probably should
be.  `C-x 4 l' seems like as good a keystroke as any.  Any thought from
other people?  I use the command quite a lot...

> 2. I think that the other-window version is far more useful than
>    the same-window version.  So if other-window behavior is available
>    only via a prefix arg I'd prefer that it be the other way around:
>    a prefix arg uses the same window; no prefix arg uses another
>    window.  (Yes, that would be a change in the default behavior.)

The command now uses pop-to-buffer-same-window, which is quite
customisable, as I understand things.  (I haven't looked into the
new-fangled window popping controlling functions.)  So I think this
should be customisable ... somehow ... by the users now.

-- 
(domestic pets only, the antidote for overdose, milk.)
   bloggy blog: http://lars.ingebrigtsen.no




Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#2270; Package emacs. (Wed, 27 Apr 2016 17:39:02 GMT) Full text and rfc822 format available.

Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#2270; Package emacs. (Wed, 27 Apr 2016 17:44:01 GMT) Full text and rfc822 format available.

Message #67 received at 2270 <at> debbugs.gnu.org (full text, mbox):

From: Dmitry Gutov <dgutov <at> yandex.ru>
To: Lars Ingebrigtsen <larsi <at> gnus.org>, Drew Adams <drew.adams <at> oracle.com>
Cc: 2270 <at> emacsbugs.donarmstrong.com, Chong Yidong <cyd <at> stupidchicken.com>,
 Stefan Monnier <monnier <at> iro.umontreal.ca>, 2270 <at> debbugs.gnu.org
Subject: Re: bug#2270: [PATCH] bug#2270, RE: 23.0.90; find-library:... (2)
 other-window version
Date: Wed, 27 Apr 2016 20:43:15 +0300
On 04/27/2016 08:38 PM, Lars Ingebrigtsen wrote:

> `find-library' isn't bound to any key, but I think it probably should
> be.  `C-x 4 l' seems like as good a keystroke as any.  Any thought from
> other people?  I use the command quite a lot...

I think the "other window" version should simply be a separate command, 
like find-function-other-window, xref-find-definitions-other-window, etc.

Having a default binding for it would be a bit odd, considering 
find-library doesn't have one.

>> 2. I think that the other-window version is far more useful than
>>    the same-window version.  So if other-window behavior is available
>>    only via a prefix arg I'd prefer that it be the other way around:
>>    a prefix arg uses the same window; no prefix arg uses another
>>    window.  (Yes, that would be a change in the default behavior.)

-1 from me.

> The command now uses pop-to-buffer-same-window, which is quite
> customisable, as I understand things.  (I haven't looked into the
> new-fangled window popping controlling functions.)  So I think this
> should be customisable ... somehow ... by the users now.

It's... not as easy as one might hope. And if you customize 
`find-library' to use the other window this way, there will be no way to 
have it use the current window just this one time. And vice versa.




Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#2270; Package emacs. (Wed, 27 Apr 2016 17:44:02 GMT) Full text and rfc822 format available.

Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#2270; Package emacs. (Wed, 27 Apr 2016 17:57:02 GMT) Full text and rfc822 format available.

Message #73 received at 2270 <at> debbugs.gnu.org (full text, mbox):

From: Lars Ingebrigtsen <larsi <at> gnus.org>
To: Dmitry Gutov <dgutov <at> yandex.ru>
Cc: 2270 <at> emacsbugs.donarmstrong.com, Chong Yidong <cyd <at> stupidchicken.com>,
 Stefan Monnier <monnier <at> iro.umontreal.ca>, Drew Adams <drew.adams <at> oracle.com>,
 2270 <at> debbugs.gnu.org
Subject: Re: bug#2270: [PATCH] bug#2270, RE: 23.0.90;
 find-library:... (2) other-window version
Date: Wed, 27 Apr 2016 19:56:37 +0200
Dmitry Gutov <dgutov <at> yandex.ru> writes:

> I think the "other window" version should simply be a separate
> command, like find-function-other-window,
> xref-find-definitions-other-window, etc.

Oh, I had gotten the impression that we're moving away from that?  I
though that was part of the reason for those...  popping customisation
thingies that I haven't paid all that much attention to.  :-)

I can add an -other-window version -- it would just call the current
version with the new optional parameter...

-- 
(domestic pets only, the antidote for overdose, milk.)
   bloggy blog: http://lars.ingebrigtsen.no




Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#2270; Package emacs. (Wed, 27 Apr 2016 17:57:02 GMT) Full text and rfc822 format available.

Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#2270; Package emacs. (Wed, 27 Apr 2016 18:47:01 GMT) Full text and rfc822 format available.

Message #79 received at 2270 <at> debbugs.gnu.org (full text, mbox):

From: Stefan Monnier <monnier <at> iro.umontreal.ca>
To: Drew Adams <drew.adams <at> oracle.com>
Cc: Lars Ingebrigtsen <larsi <at> gnus.org>, 2270 <at> debbugs.gnu.org
Subject: Re: bug#2270: [PATCH] bug#2270, RE: 23.0.90;
 find-library:... (2) other-window version
Date: Wed, 27 Apr 2016 14:46:33 -0400
> 1. I would still prefer to have the other-window version bound to
>    `C-x 4 l'.

Actually, using the `other-frame-window' package from GNU ELPA, you
could have exactly that without any extra code.

> 2. I think that the other-window version is far more useful than
>    the same-window version.  So if other-window behavior is available
>    only via a prefix arg I'd prefer that it be the other way around:
>    a prefix arg uses the same window; no prefix arg uses another
>    window.  (Yes, that would be a change in the default behavior.)

Indeed, the `other-frame-window' also needs to be expanded to provide
a new prefix which means "use same frame" or "use same window".


        Stefan




Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#2270; Package emacs. (Wed, 27 Apr 2016 18:58:02 GMT) Full text and rfc822 format available.

Message #82 received at 2270 <at> debbugs.gnu.org (full text, mbox):

From: Dmitry Gutov <dgutov <at> yandex.ru>
To: Lars Ingebrigtsen <larsi <at> gnus.org>
Cc: 2270 <at> emacsbugs.donarmstrong.com, Chong Yidong <cyd <at> stupidchicken.com>,
 Stefan Monnier <monnier <at> iro.umontreal.ca>, 2270 <at> debbugs.gnu.org
Subject: Re: bug#2270: [PATCH] bug#2270, RE: 23.0.90; find-library:... (2)
 other-window version
Date: Wed, 27 Apr 2016 21:57:22 +0300
On 04/27/2016 08:56 PM, Lars Ingebrigtsen wrote:

> Oh, I had gotten the impression that we're moving away from that?  I
> though that was part of the reason for those...  popping customisation
> thingies that I haven't paid all that much attention to.  :-)

IIUC we were moving toward prefix commands, but not the way you've used 
current-prefix-arg here.




Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#2270; Package emacs. (Wed, 27 Apr 2016 18:58:02 GMT) Full text and rfc822 format available.

bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Thu, 26 May 2016 11:24:04 GMT) Full text and rfc822 format available.

bug unarchived. Request was from Glenn Morris <rgm <at> gnu.org> to control <at> debbugs.gnu.org. (Sun, 04 Dec 2016 02:50:02 GMT) Full text and rfc822 format available.

bug Marked as fixed in versions 26.1. Request was from Glenn Morris <rgm <at> gnu.org> to control <at> debbugs.gnu.org. (Sun, 04 Dec 2016 02:50:02 GMT) Full text and rfc822 format available.

bug No longer marked as fixed in versions 25.2. Request was from Glenn Morris <rgm <at> gnu.org> to control <at> debbugs.gnu.org. (Sun, 04 Dec 2016 02:50:02 GMT) Full text and rfc822 format available.

bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Sun, 01 Jan 2017 12:24:21 GMT) Full text and rfc822 format available.

This bug report was last modified 8 years and 175 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.