all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: uzibalqa <uzibalqa@proton.me>
To: uzibalqa <uzibalqa@proton.me>
Cc: Drew Adams <drew.adams@oracle.com>,
	uzibalqa via Users list for the GNU Emacs text editor
	<help-gnu-emacs@gnu.org>
Subject: RE: [External] : menu-item uses no dot period before item-property-list in examples
Date: Mon, 17 Jul 2023 19:07:04 +0000	[thread overview]
Message-ID: <zEBuPOwjgK5RGojR9gMV0VUfTRGrJEGzD9GeBwLWOYSlr629g3B9UPLANxtIfWYB597qH1f9xUHA_EhPet_-8fdg_7g61mqR6NI7Ook9HNc=@proton.me> (raw)
In-Reply-To: <grK2HHyEDAZc2oHrLqgdMOXN1rbmryeAGQmFXNhYQT76JZKN8Dnr4Fx8In_3j0qOPj4NTlnvQiIji3pAmOzKhm46fVYk5PfWw7IJUM6erU8=@proton.me>


------- Original Message -------
On Tuesday, July 18th, 2023 at 5:25 AM, uzibalqa <uzibalqa@proton.me> wrote:


> ------- Original Message -------
> On Tuesday, July 18th, 2023 at 4:56 AM, uzibalqa uzibalqa@proton.me wrote:
> 
> 
> 
> > ------- Original Message -------
> > On Tuesday, July 18th, 2023 at 4:36 AM, Drew Adams drew.adams@oracle.com wrote:
> > 
> > > > > > So why bother users in the manual why that is never actually used.
> > > > > > (menu-item item-name real-binding item-property-list)
> > > > > 
> > > > > I hope you meant this, which is not the same thing:
> > > > > (menu-item item-name real-binding
> > > > > . item-property-list)
> > > > > 
> > > > > item-property-list is not an element of the
> > > > > overall list. It's "spliced" into that list,
> > > > > as its tail.
> > > > 
> > > > Actual code implementations using menu-item does not include
> > > > '.' before 'item-property-list'.
> > > > (menu-item item-name real-binding . item-property-list)
> > > 
> > > Look again. item-property-list must be a list.
> > > That list is not included as an element in
> > > the list that starts (menu-item....
> > > 
> > > Instead, the elements of item-property-list
> > > are included as elements of list (menu-item....
> > > That's apparently what you're not getting.
> 
> 
> Right, there is just a single list (menu-item.... with
> elements in item-property-list appended to the list (menu-item....
> 
> > > Example:
> > > 
> > > '(menu-item "Load" diredp-load-this-file
> > > :help "Load this Elisp file")
> > > 
> > > item-name is "Load".
> > > real-binding is diredp-load-this-file
> > > item-property-list is
> > > this 2-element list: (:help
> > > "Load this Elisp file")
> > > 
> > > You do not see this:
> > > 
> > > '(menu-item "Load" diredp-load-this-file
> > > (:help "Load this Emacs Lisp file"))
> > > ^ ^
> > > 
> > > which is equal to this:
> > > 
> > > '(menu-item "Load" diredp-load-this-file
> > > . ((:help "Load this Emacs Lisp file")))
> > > ^ ^ ^
> > > 
> > > What you do see is equal to this:
> > > 
> > > '(menu-item "Load" diredp-load-this-file
> > > . (:help "Load this Emacs Lisp file"))
> > > 
> > > Now ask yourself why the syntax spec
> > > shows a dot before item-property-list.
> > > 
> > > If you still don't get it, take a break,
> > > stand on your head for a few minutes, run
> > > around the block, then study this again...
> > > till you do.
> > > 
> > > When you finally get it, go look at the
> > > Emacs documentation that introduces lists
> > > and their notation. You'll find it very
> > > clear, I think. All of this is explained.
> > > 
> > > And yes, you should read the basics, such
> > > as notation, before you start trying to
> > > interpret the use of such notation in the
> > > doc. E.g., before you try to interpret the
> > > presentation of the syntax of extended menu
> > > items, learn about Lisp dot notation.
> > > 
> > > And as has also been said, this isn't just
> > > a doc notational convention. It's in fact
> > > the actual, effective, real-life Lisp list
> > > syntax.

The documentation would benefit form some real-life Lisp list
syntax.  Currently I find it short and far from real-life.

 
> > Will check things out.
> > 
> > > Crawl, then walk, before trying to run.
> > > That way, you'll find that running isn't
> > > so difficult, mysterious, confusing, scary,
> > > or user-unfriendly.
> > > 
> > > And that way maybe you'll stop kvetching
> > > that you're "drowning" and that folks need
> > > to quickly line up and start saving you.
> > > 
> > > Don't presume that those trying to help you
> > > don't get it. You're not the first person
> > > to learn Lisp, and you're not the first one
> > > that people here, and Emacs itself, has
> > > helped.
> 
> 
> Have looked at the reference manual section
> 
> 2.4.6.2 Dotted Pair Notation
> 
> I do view it as very comprehensive. Perhaps it can be elaborated
> about the thing happening with
> 
> (menu-item item-name real-binding . item-property-list)
> 
> Or do you think it is good enough for understanding the above
> clause readily without expert experience?
> 
>



  reply	other threads:[~2023-07-17 19:07 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-07-16 22:34 menu-item uses no dot period before item-property-list in examples uzibalqa
2023-07-17  0:52 ` [External] : " Drew Adams
2023-07-17  1:07   ` Emanuel Berg
2023-07-17 15:05     ` Drew Adams
2023-07-17  1:17   ` uzibalqa
2023-07-17 15:10     ` Drew Adams
2023-07-17 15:43       ` uzibalqa
2023-07-17 16:36         ` Drew Adams
2023-07-17 16:56           ` uzibalqa
2023-07-17 17:25             ` uzibalqa
2023-07-17 19:07               ` uzibalqa [this message]
2023-07-17 19:26               ` Drew Adams

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to='zEBuPOwjgK5RGojR9gMV0VUfTRGrJEGzD9GeBwLWOYSlr629g3B9UPLANxtIfWYB597qH1f9xUHA_EhPet_-8fdg_7g61mqR6NI7Ook9HNc=@proton.me' \
    --to=uzibalqa@proton.me \
    --cc=drew.adams@oracle.com \
    --cc=help-gnu-emacs@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.