emacs-orgmode
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: org-mode 4.63 (was: [Orgmode] agenda mode)


From: Ed Hirgelt
Subject: Re: org-mode 4.63 (was: [Orgmode] agenda mode)
Date: Thu, 25 Jan 2007 13:27:03 -0800

On 1/25/07, Carsten Dominik <address@hidden> 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
 


reply via email to

[Prev in Thread] Current Thread [Next in Thread]