all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* M-x version command
@ 2002-11-09  8:09 Harry Putnam
  2002-11-09  8:43 ` Alfred M. Szmidt
  2002-11-09 14:08 ` John Paul Wallington
  0 siblings, 2 replies; 5+ messages in thread
From: Harry Putnam @ 2002-11-09  8:09 UTC (permalink / raw)


This bug report will be sent to the Free Software Foundation,
not to your local site managers!
Please write in English, because the Emacs maintainers do not have
translators to read other languages for them.

Your bug report will be posted to the bug-gnu-emacs@gnu.org mailing list,
and to the gnu.emacs.bug news group.

In GNU Emacs 21.2.1 (i686-pc-linux-gnu, X toolkit, Xaw3d scroll bars)
 of 2002-08-28 on astest
configured using `configure  --host=i686-pc-linux-gnu --build=i686-pc-linux-gnu --target=i386-redhat-linux-gnu --program-prefix= --prefix=/usr --exec-prefix=/usr --bindir=/usr/bin --sbindir=/usr/sbin --sysconfdir=/etc --datadir=/usr/share --includedir=/usr/include --libdir=/usr/lib --libexecdir=/usr/libexec --localstatedir=/var --sharedstatedir=/usr/com --mandir=/usr/share/man --infodir=/usr/share/info --with-gcc --with-pop --with-sound'
Important settings:
  value of $LC_ALL: nil
  value of $LC_COLLATE: C
  value of $LC_CTYPE: nil
  value of $LC_MESSAGES: nil
  value of $LC_MONETARY: nil
  value of $LC_NUMERIC: nil
  value of $LC_TIME: nil
  value of $LANG: en_US.UTF-8
  locale-coding-system: utf-8
  default-enable-multibyte-characters: nil

Please describe exactly what actions triggered the bug
and the precise symptoms of the bug:

Invoking M-x version leaves no way to conviently copy that
information.

It doesn't show up in *Messages* buffer either.
In the past one could review it there.

Recent input:
n t a l l e <backspace> <backspace> <backspace> <backspace> 
<backspace> <backspace> <backspace> n s t a l l e d 
SPC f r o m SPC R e d h a t SPC r p m s ) <return> 
C-c C-c y M-x b u g SPC <backspace> <backspace> <backspace> 
m a k e SPC b SPC <backspace> <backspace> <backspace> 
<backspace> <backspace> <backspace> <backspace> s u 
b SPC <help-echo> <help-echo> <help-echo> <help-echo> 
<help-echo> <help-echo> <help-echo> <help-echo> <help-echo> 
<help-echo> <help-echo> <help-echo> <help-echo> <help-echo> 
<help-echo> <help-echo> <help-echo> <help-echo> <help-echo> 
<help-echo> <help-echo> <help-echo> <help-echo> <help-echo> 
<help-echo> <help-echo> <help-echo> <help-echo> <menu-bar> 
<help-menu> <report-emacs-bug>

Recent messages:
Loading sha1-el...
Loading executable...done
Loading sha1-el...done
Sending news via news.gmane.org using nntp...
Wrote /home/hgp/Mail/news-1102/3
Sending...done

call-interactively: Text is read-only
call-interactively: Quit
Loading emacsbug...done

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

* Re: M-x version command
  2002-11-09  8:09 M-x version command Harry Putnam
@ 2002-11-09  8:43 ` Alfred M. Szmidt
  2002-11-09 10:41   ` Harry Putnam
  2002-11-09 14:08 ` John Paul Wallington
  1 sibling, 1 reply; 5+ messages in thread
From: Alfred M. Szmidt @ 2002-11-09  8:43 UTC (permalink / raw)
  Cc: bug-gnu-emacs

   Invoking M-x version leaves no way to conviently copy that
   information.

What is wrong with "C-u M-x version"?  See C-h C-f version for more
info.

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

* Re: M-x version command
  2002-11-09  8:43 ` Alfred M. Szmidt
@ 2002-11-09 10:41   ` Harry Putnam
  0 siblings, 0 replies; 5+ messages in thread
From: Harry Putnam @ 2002-11-09 10:41 UTC (permalink / raw)
  Cc: bug-gnu-emacs

"Alfred M. Szmidt" <ams@kemisten.nu> writes:

>    Invoking M-x version leaves no way to conviently copy that
>    information.
>
> What is wrong with "C-u M-x version"?  See C-h C-f version for more
> info.

C-u M-x:
It only works if the current buffer is writable, which is often not
the case.  Thus requiring another step

C-h C-f version:
(From *Messages* buffer:)
Info-goto-emacs-command-node: Couldn't find documentation for version

What is wrong with the info being written to *Messages* buffer where
it has been expected to appear for ages?

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

* Re: M-x version command
  2002-11-09  8:09 M-x version command Harry Putnam
  2002-11-09  8:43 ` Alfred M. Szmidt
@ 2002-11-09 14:08 ` John Paul Wallington
  2002-11-09 15:51   ` Harry Putnam
  1 sibling, 1 reply; 5+ messages in thread
From: John Paul Wallington @ 2002-11-09 14:08 UTC (permalink / raw)
  Cc: bug-gnu-emacs

Harry Putnam <hgp@sbcglobal.net> wrote:

> Invoking M-x version leaves no way to conviently copy that
> information.
>
> It doesn't show up in *Messages* buffer either.
> In the past one could review it there.

When called interactively, `version' (an alias for `emacs-version')
will use `message' to display its output (causing it to show up in the
*Messages* buffer) in both the RC branch (that will be 21.3) and HEAD.

Does `emacs-version' in 21.2 have this snippet at the end?

    (if here 
        (insert version-string)
      (if (interactive-p)
          (message "%s" version-string)
        version-string))))

-- 
John Paul Wallington

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

* Re: M-x version command
  2002-11-09 14:08 ` John Paul Wallington
@ 2002-11-09 15:51   ` Harry Putnam
  0 siblings, 0 replies; 5+ messages in thread
From: Harry Putnam @ 2002-11-09 15:51 UTC (permalink / raw)
  Cc: bug-gnu-emacs

John Paul Wallington <jpw@shootybangbang.com> writes:

> From: John Paul Wallington <jpw@shootybangbang.com>
> Subject: Re: M-x version command
> To: Harry Putnam <hgp@sbcglobal.net>
> Cc: bug-gnu-emacs@gnu.org
> Date: Sat, 09 Nov 2002 14:08:40 +0000
> Message-ID: <87adki4yzb.fsf@bundalo.shootybangbang.com>
>
> Harry Putnam <hgp@sbcglobal.net> wrote:
>
>> Invoking M-x version leaves no way to conviently copy that
>> information.
>>
>> It doesn't show up in *Messages* buffer either.
>> In the past one could review it there.
>
> When called interactively, `version' (an alias for `emacs-version')
> will use `message' to display its output (causing it to show up in the
> *Messages* buffer) in both the RC branch (that will be 21.3) and HEAD.


I did discover this info:

Running M-x version <RET> prints a `G' in *Messages" buffer

Running M-x eval-expression <RET>
Eval: (emacs-version) <RET>

Does print version info in *Messages*
  "GNU Emacs 21.2.1 (i686-pc-linux-gnu, X toolkit, Xaw3d scroll bars)
   of 2002-08-28 on astest"

Further, something I should have tried first:
Calling emacs -q -no-site-file, then M-x version, and the version info
does appear in *Messages*.  So apparently some local setting causing this.

>
> Does `emacs-version' in 21.2 have this snippet at the end?
>
>     (if here 
>         (insert version-string)
>       (if (interactive-p)
>           (message "%s" version-string)
>         version-string))))

If you mean in /usr/share/emacs/21.2/lisp/version.el, then yes it does
around line 74.

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

end of thread, other threads:[~2002-11-09 15:51 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2002-11-09  8:09 M-x version command Harry Putnam
2002-11-09  8:43 ` Alfred M. Szmidt
2002-11-09 10:41   ` Harry Putnam
2002-11-09 14:08 ` John Paul Wallington
2002-11-09 15:51   ` Harry Putnam

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.