all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / 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>
     [not found] ` <<barmar-9D6D59.07331121092013@news.eternal-september.org>
2013-09-21 14:03   ` canonical verbose? Drew Adams
2013-09-21 14:31     ` Andreas Röhler
     [not found] <mailman.2626.1379749488.10748.help-gnu-emacs@gnu.org>
2013-09-21 11:33 ` Barry Margolin
2013-09-21  7:46 Andreas Röhler

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.