From: "Ed Hirgelt" <ehirgelt@gmail.com>
To: Carsten Dominik <dominik@science.uva.nl>
Cc: emacs-orgmode@gnu.org
Subject: Re: org-mode 4.63 (was: agenda mode)
Date: Thu, 25 Jan 2007 13:27:03 -0800 [thread overview]
Message-ID: <44d0d9630701251327i253b3a14h610f1e3253c51a7b@mail.gmail.com> (raw)
In-Reply-To: <0e9e7d99d16c36b3aa874a302ac5a6a8@science.uva.nl>
[-- Attachment #1.1: Type: text/plain, Size: 864 bytes --]
On 1/25/07, Carsten Dominik <dominik@science.uva.nl> wrote:
>
> I have just uploaded 4.63 which fixes this problem for now -
Both 4.62 & 4.63 suffer from another problem, perhaps limited to XEmacs.
In org-agenda-mode org-set-local is called like this:
(org-set-local 'buffer-substring-filters
(cons (lambda (x) (set-text-properties 0 (length x) nil x) x)
buffer-substring-filters))
Unfortunately, buffer-substring-filters is evaluated before it is created
resulting in an error.
I've patched my version temporarily like this (which is a bit redundant):
;; Make sure properties are removed when copying text
(make-local-variable 'buffer-substring-filters)
(org-set-local 'buffer-substring-filters
(cons (lambda (x) (set-text-properties 0 (length x) nil x) x)
buffer-substring-filters))
Thanks,
Ed
[-- Attachment #1.2: Type: text/html, Size: 1535 bytes --]
[-- Attachment #2: Type: text/plain, Size: 149 bytes --]
_______________________________________________
Emacs-orgmode mailing list
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode
next prev parent reply other threads:[~2007-01-25 21:27 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-01-25 18:11 agenda mode J. David Boyd
2007-01-25 20:19 ` Carsten Dominik
2007-01-25 20:28 ` J. David Boyd
2007-01-25 20:32 ` org-mode 4.63 (was: agenda mode) Carsten Dominik
2007-01-25 21:27 ` Ed Hirgelt [this message]
2007-01-27 18:43 ` org-mode 4.63 (was: [Orgmodelink navigation T. V. Raman
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=44d0d9630701251327i253b3a14h610f1e3253c51a7b@mail.gmail.com \
--to=ehirgelt@gmail.com \
--cc=dominik@science.uva.nl \
--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).