all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Vinicius Jose Latorre <viniciusjl@ig.com.br>
Cc: emacs-devel@gnu.org
Subject: Re: printing.el again
Date: Sun, 14 Nov 2004 13:29:08 -0200	[thread overview]
Message-ID: <419779C4.50909@ig.com.br> (raw)
In-Reply-To: <m14qjtx9fm.fsf-monnier+emacs@gnu.org>

Hi Stefan,


 > In your merge of the two menus, why do you still bother with
 >
 >           (pr-:visible (if (eq ps-print-emacs-type 'emacs)
 >                :visible    ; GNU Emacs
 >              :included))
 >
 > since on Emacs, :visible and :included are synonyms anyway.
 > Also you now do

Ok, I just forgot about this. I'll modify printing.


 >     (let (...
 >           pr-:help)
 >       (if (eq ps-print-emacs-type 'emacs)
 >       (defalias 'pr-:help #'(lambda (text) (list :help text))) ; GNU 
Emacs
 >     (defalias 'pr-:help 'ignore))                   ; XEmacs
 >
 > which does not do what you think.  The `let' binding of the `pr-:help'
 > variable has *no effect* on the `pr-:help' function (the two name 
spaces are
 > separate).  I.e. the pr-:help function ends up defined globally anyway so
 > you had better define it at toplevel so it's less misleading (or 
otherwise,
 > you'd want to use CL's `flet' if you want to locally define a function).

Hummm, indeed, but this:

 (let (...
       (pr-:help (if (eq ps-print-emacs-type 'emacs)
                  #'(lambda (text) (list :help text))  ; GNU Emacs
                'ignore)))                  ; XEmacs
  ......
  ,@(funcall pr-:help ...)

Will do the work and pr-:help will be local.


Thanks,


Vinicius

  reply	other threads:[~2004-11-14 15:29 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2004-11-14  5:59 printing.el again Stefan
2004-11-14 15:29 ` Vinicius Jose Latorre [this message]
2004-11-14 19:20   ` Stefan Monnier
2004-11-15 20:03     ` Vinicius Jose Latorre
2004-11-15 20:47       ` Stefan Monnier
2004-11-16  0:55         ` Vinicius Jose Latorre
2004-11-16  1:29           ` Stefan
2004-11-16  1:36             ` Luc Teirlinck
2004-11-16 14:47             ` Ralf Angeli
2004-11-16 16:51               ` Stefan Monnier
2004-11-18  1:53             ` Vinicius Jose Latorre
2004-11-18 16:30               ` Stefan Monnier
2004-11-18 22:44                 ` Vinicius Jose Latorre
2004-11-18 23:31                   ` Stefan Monnier
2004-11-19 20:04                   ` Richard Stallman
2004-11-17  5:03       ` Richard Stallman

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=419779C4.50909@ig.com.br \
    --to=viniciusjl@ig.com.br \
    --cc=emacs-devel@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.