unofficial mirror of bug-gnu-emacs@gnu.org 
 help / color / mirror / code / Atom feed
* bug#37956: Elisp manual referes obsolete lisp file.
@ 2019-10-28  9:18 Takesi Ayanokoji
  2019-10-28 14:47 ` Stefan Kangas
  0 siblings, 1 reply; 9+ messages in thread
From: Takesi Ayanokoji @ 2019-10-28  9:18 UTC (permalink / raw)
  To: 37956

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

Hi.

In Elisp manual -> Debugging -> Edebug -> Printing in Edebug, the manual
says

Other programs can also use custom printing; see cust-print.el fo rdetails.

http://git.savannah.gnu.org/cgit/emacs.git/tree/doc/lispref/edebug.texi#n875

, but cust-print.el is obsolete since emacs-24.3.

Thanks.

[-- Attachment #2: Type: text/html, Size: 721 bytes --]

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

* bug#37956: Elisp manual referes obsolete lisp file.
  2019-10-28  9:18 bug#37956: Elisp manual referes obsolete lisp file Takesi Ayanokoji
@ 2019-10-28 14:47 ` Stefan Kangas
  2019-10-28 15:18   ` Lars Ingebrigtsen
  2019-10-28 17:43   ` Eli Zaretskii
  0 siblings, 2 replies; 9+ messages in thread
From: Stefan Kangas @ 2019-10-28 14:47 UTC (permalink / raw)
  To: Takesi Ayanokoji; +Cc: 37956

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

Takesi Ayanokoji <ayanokoji.takesi@gmail.com> writes:

> In Elisp manual -> Debugging -> Edebug -> Printing in Edebug, the manual says
>
> Other programs can also use custom printing; see cust-print.el fo rdetails.
>
> http://git.savannah.gnu.org/cgit/emacs.git/tree/doc/lispref/edebug.texi#n875
>
> , but cust-print.el is obsolete since emacs-24.3.

Thanks for the report.

Perhaps we could simply to remove it like in the attached patch?

Best regards,
Stefan Kangas

[-- Attachment #2: 0001-Remove-reference-to-obsolete-library-cust-print.el.patch --]
[-- Type: application/octet-stream, Size: 839 bytes --]

From 920b99d3b4e8c39c3f7ab1592182dbe3cba0171a Mon Sep 17 00:00:00 2001
From: Stefan Kangas <stefankangas@gmail.com>
Date: Mon, 28 Oct 2019 15:45:00 +0100
Subject: [PATCH] Remove reference to obsolete library cust-print.el

* doc/lispref/edebug.texi (Printing in Edebug): Remove reference to
obsolete library cust-print.el.  (Bug#37956)
---
 doc/lispref/edebug.texi | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/doc/lispref/edebug.texi b/doc/lispref/edebug.texi
index e1147df8af..c9de448469 100644
--- a/doc/lispref/edebug.texi
+++ b/doc/lispref/edebug.texi
@@ -872,9 +872,6 @@ Printing in Edebug
 printing results.  The default value is @code{t}.
 @end defopt
 
-  Other programs can also use custom printing; see @file{cust-print.el}
-for details.
-
 @node Trace Buffer
 @subsection Trace Buffer
 @cindex trace buffer
-- 
2.23.0


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

* bug#37956: Elisp manual referes obsolete lisp file.
  2019-10-28 14:47 ` Stefan Kangas
@ 2019-10-28 15:18   ` Lars Ingebrigtsen
  2019-10-28 17:43   ` Eli Zaretskii
  1 sibling, 0 replies; 9+ messages in thread
From: Lars Ingebrigtsen @ 2019-10-28 15:18 UTC (permalink / raw)
  To: Stefan Kangas; +Cc: 37956, Takesi Ayanokoji

Stefan Kangas <stefan@marxist.se> writes:

> Perhaps we could simply to remove it like in the attached patch?

I think so -- it makes no sense to have the manual refer to obsolete
libraries.

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





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

* bug#37956: Elisp manual referes obsolete lisp file.
  2019-10-28 14:47 ` Stefan Kangas
  2019-10-28 15:18   ` Lars Ingebrigtsen
@ 2019-10-28 17:43   ` Eli Zaretskii
  2019-12-06 16:16     ` Takesi Ayanokoji
  2020-09-05  0:40     ` Stefan Kangas
  1 sibling, 2 replies; 9+ messages in thread
From: Eli Zaretskii @ 2019-10-28 17:43 UTC (permalink / raw)
  To: Stefan Kangas; +Cc: 37956, ayanokoji.takesi

> From: Stefan Kangas <stefan@marxist.se>
> Date: Mon, 28 Oct 2019 15:47:05 +0100
> Cc: 37956@debbugs.gnu.org
> 
> > In Elisp manual -> Debugging -> Edebug -> Printing in Edebug, the manual says
> >
> > Other programs can also use custom printing; see cust-print.el fo rdetails.
> >
> > http://git.savannah.gnu.org/cgit/emacs.git/tree/doc/lispref/edebug.texi#n875
> >
> > , but cust-print.el is obsolete since emacs-24.3.
> 
> Thanks for the report.
> 
> Perhaps we could simply to remove it like in the attached patch?

We moved cuts-print.el to obsolete/ because its features are supported
by the Lisp printer.  So I'd prefer to modify that sentence to mention
the latter, rather than just remove it.

Btw, this sentence and one earlier mentions "custom printing" without
explaining what that means, AFAICT.  It would be good to fix this
while at that.

Thanks.





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

* bug#37956: Elisp manual referes obsolete lisp file.
  2019-10-28 17:43   ` Eli Zaretskii
@ 2019-12-06 16:16     ` Takesi Ayanokoji
  2019-12-07  8:32       ` Eli Zaretskii
  2020-09-05  0:40     ` Stefan Kangas
  1 sibling, 1 reply; 9+ messages in thread
From: Takesi Ayanokoji @ 2019-12-06 16:16 UTC (permalink / raw)
  To: Eli Zaretskii; +Cc: Stefan Kangas, 37956

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

Hi.

In files.texi also referes obsolete Fast Lock mode.

http://git.savannah.gnu.org/cgit/emacs.git/tree/doc/lispref/files.texi#n490

Thanks.

2019年10月29日(火) 2:43 Eli Zaretskii <eliz@gnu.org>:

> > From: Stefan Kangas <stefan@marxist.se>
> > Date: Mon, 28 Oct 2019 15:47:05 +0100
> > Cc: 37956@debbugs.gnu.org
> >
> > > In Elisp manual -> Debugging -> Edebug -> Printing in Edebug, the
> manual says
> > >
> > > Other programs can also use custom printing; see cust-print.el fo
> rdetails.
> > >
> > >
> http://git.savannah.gnu.org/cgit/emacs.git/tree/doc/lispref/edebug.texi#n875
> > >
> > > , but cust-print.el is obsolete since emacs-24.3.
> >
> > Thanks for the report.
> >
> > Perhaps we could simply to remove it like in the attached patch?
>
> We moved cuts-print.el to obsolete/ because its features are supported
> by the Lisp printer.  So I'd prefer to modify that sentence to mention
> the latter, rather than just remove it.
>
> Btw, this sentence and one earlier mentions "custom printing" without
> explaining what that means, AFAICT.  It would be good to fix this
> while at that.
>
> Thanks.
>

[-- Attachment #2: Type: text/html, Size: 2039 bytes --]

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

* bug#37956: Elisp manual referes obsolete lisp file.
  2019-12-06 16:16     ` Takesi Ayanokoji
@ 2019-12-07  8:32       ` Eli Zaretskii
  0 siblings, 0 replies; 9+ messages in thread
From: Eli Zaretskii @ 2019-12-07  8:32 UTC (permalink / raw)
  To: Takesi Ayanokoji; +Cc: stefan, 37956

> From: Takesi Ayanokoji <ayanokoji.takesi@gmail.com>
> Date: Sat, 7 Dec 2019 01:16:27 +0900
> Cc: Stefan Kangas <stefan@marxist.se>, 37956@debbugs.gnu.org
> 
> In files.texi also referes obsolete Fast Lock mode.

Thanks, I removed that reference.





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

* bug#37956: Elisp manual referes obsolete lisp file.
  2019-10-28 17:43   ` Eli Zaretskii
  2019-12-06 16:16     ` Takesi Ayanokoji
@ 2020-09-05  0:40     ` Stefan Kangas
  2020-09-05  6:24       ` Eli Zaretskii
  1 sibling, 1 reply; 9+ messages in thread
From: Stefan Kangas @ 2020-09-05  0:40 UTC (permalink / raw)
  To: Eli Zaretskii; +Cc: 37956, ayanokoji.takesi

tags 37956 + confirmed
thanks

Eli Zaretskii <eliz@gnu.org> writes:

>> From: Stefan Kangas <stefan@marxist.se>
>> Date: Mon, 28 Oct 2019 15:47:05 +0100
>> Cc: 37956@debbugs.gnu.org
>>
>> > In Elisp manual -> Debugging -> Edebug -> Printing in Edebug, the manual says
>> >
>> > Other programs can also use custom printing; see cust-print.el fo rdetails.
>> >
>> > http://git.savannah.gnu.org/cgit/emacs.git/tree/doc/lispref/edebug.texi#n875
>> >
>> > , but cust-print.el is obsolete since emacs-24.3.
>>
>> Thanks for the report.
>>
>> Perhaps we could simply to remove it like in the attached patch?
>
> We moved cuts-print.el to obsolete/ because its features are supported
> by the Lisp printer.  So I'd prefer to modify that sentence to mention
> the latter, rather than just remove it.
>
> Btw, this sentence and one earlier mentions "custom printing" without
> explaining what that means, AFAICT.  It would be good to fix this
> while at that.

(That was 10 months ago, but I never replied back at the time.)

I don't know what the "Lisp printer" is, nor do I know what "custom
printing" is, so I unfortunately can't help with the above.

Help welcome by someone who knows enough about this to make the proposed
additions.





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

* bug#37956: Elisp manual referes obsolete lisp file.
  2020-09-05  0:40     ` Stefan Kangas
@ 2020-09-05  6:24       ` Eli Zaretskii
  2020-10-07  4:42         ` Lars Ingebrigtsen
  0 siblings, 1 reply; 9+ messages in thread
From: Eli Zaretskii @ 2020-09-05  6:24 UTC (permalink / raw)
  To: Stefan Kangas; +Cc: 37956, ayanokoji.takesi

> From: Stefan Kangas <stefan@marxist.se>
> Date: Sat, 5 Sep 2020 00:40:50 +0000
> Cc: 37956@debbugs.gnu.org, ayanokoji.takesi@gmail.com
> 
> > We moved cuts-print.el to obsolete/ because its features are supported
> > by the Lisp printer.  So I'd prefer to modify that sentence to mention
> > the latter, rather than just remove it.
> >
> > Btw, this sentence and one earlier mentions "custom printing" without
> > explaining what that means, AFAICT.  It would be good to fix this
> > while at that.
> 
> (That was 10 months ago, but I never replied back at the time.)
> 
> I don't know what the "Lisp printer" is

In the ELisp manual, type "i Lisp printer RET" and read there.

> nor do I know what "custom printing" is

That's cust-print.el, I think.





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

* bug#37956: Elisp manual referes obsolete lisp file.
  2020-09-05  6:24       ` Eli Zaretskii
@ 2020-10-07  4:42         ` Lars Ingebrigtsen
  0 siblings, 0 replies; 9+ messages in thread
From: Lars Ingebrigtsen @ 2020-10-07  4:42 UTC (permalink / raw)
  To: Eli Zaretskii; +Cc: Stefan Kangas, 37956, ayanokoji.takesi

Eli Zaretskii <eliz@gnu.org> writes:

>> (That was 10 months ago, but I never replied back at the time.)
>> 
>> I don't know what the "Lisp printer" is
>
> In the ELisp manual, type "i Lisp printer RET" and read there.
>
>> nor do I know what "custom printing" is
>
> That's cust-print.el, I think.

I've now updated the manual here.

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





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

end of thread, other threads:[~2020-10-07  4:42 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-10-28  9:18 bug#37956: Elisp manual referes obsolete lisp file Takesi Ayanokoji
2019-10-28 14:47 ` Stefan Kangas
2019-10-28 15:18   ` Lars Ingebrigtsen
2019-10-28 17:43   ` Eli Zaretskii
2019-12-06 16:16     ` Takesi Ayanokoji
2019-12-07  8:32       ` Eli Zaretskii
2020-09-05  0:40     ` Stefan Kangas
2020-09-05  6:24       ` Eli Zaretskii
2020-10-07  4:42         ` Lars Ingebrigtsen

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