unofficial mirror of bug-gnu-emacs@gnu.org 
 help / color / mirror / code / Atom feed
* bug#31589: lispintro - Backtrace read out update
@ 2018-05-25  3:32 Van L
       [not found] ` <handler.31589.B.15272191445973.ack@debbugs.gnu.org>
  2018-05-25  8:37 ` bug#31589: lispintro - Backtrace read out update Eli Zaretskii
  0 siblings, 2 replies; 7+ messages in thread
From: Van L @ 2018-05-25  3:32 UTC (permalink / raw)
  To: 31589

Hello.

The documentation and behavior are different.

diff --git a/doc/lispintro/emacs-lisp-intro.texi b/doc/lispintro/emacs-lisp-intro.texi
index b79432e..a3a2155 100644
--- a/doc/lispintro/emacs-lisp-intro.texi
+++ b/doc/lispintro/emacs-lisp-intro.texi
@@ -1339,10 +1339,12 @@ Making Errors
 ---------- Buffer: *Backtrace* ----------
 Debugger entered--Lisp error: (void-function this)
   (this is an unquoted list)
-  eval((this is an unquoted list))
-  eval-last-sexp-1(nil)
+  eval((this is an unquoted list) nil)
+  elisp--eval-last-sexp(nil)
   eval-last-sexp(nil)
-  call-interactively(eval-last-sexp)
+  funcall-interactively(eval-last-sexp nil)
+  call-interactively(eval-last-sexp nil nil)
+  command-execute(eval-last-sexp)
 ---------- Buffer: *Backtrace* ----------
 @end group
 @end smallexample




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

* bug#31589: Acknowledgement (lispintro - Backtrace read out update)
       [not found] ` <handler.31589.B.15272191445973.ack@debbugs.gnu.org>
@ 2018-05-25  4:21   ` Van L
  2018-05-25  8:39     ` Eli Zaretskii
  0 siblings, 1 reply; 7+ messages in thread
From: Van L @ 2018-05-25  4:21 UTC (permalink / raw)
  To: 31589

In the example given, I think if the first atom of the list is `this-here’, as in:

  (this-here is an unquoted list)

explained in the context of `(void-function this-here)’ stands out distinctly from other uses of `this’ in the surrounding text.

: 8cda6f8f (Glenn Morris             2007-09-06  1318) (this is an unquoted list)




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

* bug#31589: lispintro - Backtrace read out update
  2018-05-25  3:32 bug#31589: lispintro - Backtrace read out update Van L
       [not found] ` <handler.31589.B.15272191445973.ack@debbugs.gnu.org>
@ 2018-05-25  8:37 ` Eli Zaretskii
  1 sibling, 0 replies; 7+ messages in thread
From: Eli Zaretskii @ 2018-05-25  8:37 UTC (permalink / raw)
  To: Van L; +Cc: 31589-done

> From: Van L <van@scratch.space>
> Date: Fri, 25 May 2018 13:32:02 +1000
> 
> The documentation and behavior are different.

Thanks, fixed.





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

* bug#31589: Acknowledgement (lispintro - Backtrace read out update)
  2018-05-25  4:21   ` bug#31589: Acknowledgement (lispintro - Backtrace read out update) Van L
@ 2018-05-25  8:39     ` Eli Zaretskii
  2018-05-25  8:59       ` Van L
  0 siblings, 1 reply; 7+ messages in thread
From: Eli Zaretskii @ 2018-05-25  8:39 UTC (permalink / raw)
  To: Van L; +Cc: 31589

> From: Van L <van@scratch.space>
> Date: Fri, 25 May 2018 14:21:24 +1000
> 
> In the example given, I think if the first atom of the list is `this-here’, as in:
> 
>   (this-here is an unquoted list)
> 
> explained in the context of `(void-function this-here)’ stands out distinctly from other uses of `this’ in the surrounding text.
> 
> : 8cda6f8f (Glenn Morris             2007-09-06  1318) (this is an unquoted list)

Sorry, I don't understand what you are trying to say.  The string
"this-here" doesn't appear anywhere in this manual.  And 'this' is a
commonly-used symbol in these days of OOP.





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

* bug#31589: Acknowledgement (lispintro - Backtrace read out update)
  2018-05-25  8:39     ` Eli Zaretskii
@ 2018-05-25  8:59       ` Van L
  2018-05-25  9:58         ` Phil Sainty
  0 siblings, 1 reply; 7+ messages in thread
From: Van L @ 2018-05-25  8:59 UTC (permalink / raw)
  To: Eli Zaretskii; +Cc: 31589


> On 25 May 2018, at 18:39, Eli Zaretskii <eliz@gnu.org> wrote:
> 
> And 'this' is a
> commonly-used symbol in these days of OOP.

Yes. That’s one of the two sources of confusion, the other is the plain old English `this’ used in the unquoted list and surrounding discussion.

Having `this-here’ emphasizes the first atom of the list being discussed as distinct from `this' in an oop sense or ordinary `this' in a sentence. It bends over backwards more for a non-programmer.

Anyway, your call.




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

* bug#31589: Acknowledgement (lispintro - Backtrace read out update)
  2018-05-25  8:59       ` Van L
@ 2018-05-25  9:58         ` Phil Sainty
  2018-05-25 10:37           ` Van L
  0 siblings, 1 reply; 7+ messages in thread
From: Phil Sainty @ 2018-05-25  9:58 UTC (permalink / raw)
  To: Van L; +Cc: 31589, bug-gnu-emacs

On 2018-05-25 20:59, Van L wrote:
> Having `this-here’ emphasizes the first atom of the list being
> discussed as distinct from `this' in an oop sense or ordinary `this'
> in a sentence. It bends over backwards more for a non-programmer.

A bit awkward, though?

I think "(here is an unquoted list)" would be nicer than that, if
such a change was to be made.







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

* bug#31589: Acknowledgement (lispintro - Backtrace read out update)
  2018-05-25  9:58         ` Phil Sainty
@ 2018-05-25 10:37           ` Van L
  0 siblings, 0 replies; 7+ messages in thread
From: Van L @ 2018-05-25 10:37 UTC (permalink / raw)
  To: Phil Sainty; +Cc: 31589, bug-gnu-emacs


> Phil Sainty writes:
> 
> Van L writes:
>> Having `this-here’ emphasizes the first atom of the list being
>> discussed as distinct from `this' in an oop sense or ordinary `this'
>> in a sentence. It bends over backwards more for a non-programmer.
> 
> A bit awkward, though?
> 
> I think "(here is an unquoted list)" would be nicer than that, if
> such a change was to be made.

Not awkward in the following context, which has the hyphenated `void-function’.

(void-function this-here)

Looks nicer to me.
It hints of being lispy.

hmmm, yeah, this works, too, and won’t add more.

(void-function here)




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

end of thread, other threads:[~2018-05-25 10:37 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-05-25  3:32 bug#31589: lispintro - Backtrace read out update Van L
     [not found] ` <handler.31589.B.15272191445973.ack@debbugs.gnu.org>
2018-05-25  4:21   ` bug#31589: Acknowledgement (lispintro - Backtrace read out update) Van L
2018-05-25  8:39     ` Eli Zaretskii
2018-05-25  8:59       ` Van L
2018-05-25  9:58         ` Phil Sainty
2018-05-25 10:37           ` Van L
2018-05-25  8:37 ` bug#31589: lispintro - Backtrace read out update Eli Zaretskii

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