unofficial mirror of help-gnu-emacs@gnu.org
 help / color / mirror / Atom feed
[parent not found: <<mailman.2626.1379749488.10748.help-gnu-emacs@gnu.org>]
* canonical verbose?
@ 2013-09-21  7:46 Andreas Röhler
  0 siblings, 0 replies; 4+ messages in thread
From: Andreas Röhler @ 2013-09-21  7:46 UTC (permalink / raw)
  To: help-gnu-emacs@gnu.org List

Hi,

writing quite often commands which should give some reports when being successful, like that:

(defun ar-up-list ()
   "Returns position reached when successful, nil otherwise"
   (interactive)
   (let ((orig (point))
	(pps (syntax-ppss))
         erg)
     (and (nth 8 pps) (goto-char (nth 8 pps)))
     (ignore-errors (up-list))
     (and (< orig (point))(setq erg (point)))
     (when (interactive-p) (message "%s" erg))
     erg))

However, binding the message at interactive-usage alone seems not optimal.

Does Emacs provide some variable setting verbosity?

TIA,

Andreas



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

end of thread, other threads:[~2013-09-21 14:31 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <mailman.2626.1379749488.10748.help-gnu-emacs@gnu.org>
2013-09-21 11:33 ` canonical verbose? Barry Margolin
     [not found] <<mailman.2626.1379749488.10748.help-gnu-emacs@gnu.org>
     [not found] ` <<barmar-9D6D59.07331121092013@news.eternal-september.org>
2013-09-21 14:03   ` Drew Adams
2013-09-21 14:31     ` Andreas Röhler
2013-09-21  7:46 Andreas Röhler

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