From: Thorsten Jolitz <tjolitz@gmail.com>
To: emacs-orgmode@gnu.org
Subject: Re: How to turn off visibility-state messages from 'org-cycle?
Date: Thu, 18 Jul 2013 11:32:21 +0200 [thread overview]
Message-ID: <87txjsgqmy.fsf@gmail.com> (raw)
In-Reply-To: 87a9lkmfk0.fsf@ucl.ac.uk
Eric S Fraga <e.fraga@ucl.ac.uk> writes:
> Thorsten Jolitz <tjolitz@gmail.com> writes:
>
>> Hi List,
>>
>> when calling Org-mode functionality form an external program, some
>> functions seem to make use of 'org-cycle', what results in a lot of
>> "OVERVIEW" messages arriving at stdout/stderr
>>
>> ,---------
>> | OVERVIEW
>
> [...]
>
>> Is there a way to turn these message off? I found things like
>
> Unfortunately, no. The code that outputs these messages does have a
> hack to turn off the output when the org file is an attachment in a gnus
> message but that's about it.
>
> I also would like to have these turned off when using an emacs batch
> command which I often do to synchronise my diary with various online
> calendars...
>
> Should be easy to add a variable and then a condition on each
> (message...) line in org-cycle-internal-global as all of the relevant
> message lines are already within a conditional.
yes, adding this defcustom to org.el
#+begin_src emacs-lisp
(defcustom org-cycle-silently nil
"Non-nil means `org-cycle-internal-global' cycles silently.
No messages about changing visibility state of the Org-mode
buffer will be outputted anymore in that case. This is especially
useful to avoid having these messages arrive at stdout or stderr
when calling Org-mode functionality from an external program."
:group 'org-cycle
:type 'boolean)
#+end_src
and then changing the four
#+begin_src emacs-lisp
(unless ga (message "CONTENTS..."))
#+end_src
lines in `org-cycle-internal-global' to something like
#+begin_src emacs-lisp
(unless (or ga org-cycle-silently)
(message "CONTENTS..."))
#+end_src
would do the job.
--
cheers,
Thorsten
next prev parent reply other threads:[~2013-07-18 9:32 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-07-17 14:13 How to turn off visibility-state messages from 'org-cycle? Thorsten Jolitz
2013-07-18 8:35 ` Eric S Fraga
2013-07-18 9:32 ` Thorsten Jolitz [this message]
2013-07-18 9:52 ` Thorsten Jolitz
2013-07-18 9:57 ` Thorsten Jolitz
2013-07-19 9:04 ` Eric S Fraga
2013-07-19 11:57 ` [PATCH] Enable silent visibility cycling (was: How to turn off visibility-state messages from 'org-cycle?) Thorsten Jolitz
2013-07-19 12:23 ` [PATCH] Enable silent visibility cycling Jambunathan K
2013-07-22 7:50 ` Thorsten Jolitz
2013-07-22 7:58 ` Jambunathan K
2013-07-25 10:18 ` Thorsten Jolitz
2013-07-19 17:54 ` Eric S Fraga
2013-09-02 6:50 ` Carsten Dominik
2013-07-18 11:40 ` How to turn off visibility-state messages from 'org-cycle? Jambunathan K
2013-07-19 6:18 ` Thorsten Jolitz
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
List information: https://www.orgmode.org/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=87txjsgqmy.fsf@gmail.com \
--to=tjolitz@gmail.com \
--cc=emacs-orgmode@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 public inbox
https://git.savannah.gnu.org/cgit/emacs/org-mode.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).