* Org-mode version 5.15
@ 2007-11-28 15:18 Carsten Dominik
2007-11-29 3:53 ` James TD Smith
2007-11-29 12:23 ` John Wiegley
0 siblings, 2 replies; 5+ messages in thread
From: Carsten Dominik @ 2007-11-28 15:18 UTC (permalink / raw)
To: emacs-orgmode
Hi,
as usually, the latest release contained some stupid bugs. Thanks for the
fast reports, 5.15 at http://orgmode.org fixed them and has the
following additions:
Changes in Version 5.15
~~~~~~~~~~~~~~~~~~~~~~~
Details
=======
- There are new special properties TIMESTAMP and TIMESTAMP_IA.
These can be used to access the first keyword-less active
and inactive timestamp in an entry, respectively.
- New variable `org-clock-heading-function'. It can be set to
a function that creates the string shown in the mode line
when a clock is running. Thanks to Tom Weissmann for this
idea.
- Bug fixes.
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: Org-mode version 5.15
2007-11-28 15:18 Org-mode version 5.15 Carsten Dominik
@ 2007-11-29 3:53 ` James TD Smith
2007-11-29 5:21 ` Carsten Dominik
2007-11-29 12:23 ` John Wiegley
1 sibling, 1 reply; 5+ messages in thread
From: James TD Smith @ 2007-11-29 3:53 UTC (permalink / raw)
To: emacs-orgmode
[-- Attachment #1: Type: text/plain, Size: 938 bytes --]
Thanks to Carsten for another org-mode release.
I have found and fixed a few bugs in 5.15:
The code for the %c escape in org-remember-apply-templates caused remember to
stop working if the kill-ring was empty (current-kill raises an error if the kill
ring is empty). It also didn't check the X selection, so it wouldn't work
properly if x-select-enable-clipboard is nil (some of us like having two
clipboards :).
org-clock-cancel did not remove the clock information from the modeline.
org-clock-in was using the third matched group of the org-todo-line regex as the
clock string. This included the tags for the entry, so with the default
org-tags-column setting of -80 the clock string was far too long for any entry
with tags. The patch changes this to use org-complex-heading-regex, which can
extract just the title.
The patch attatched fixes all three of these.
Also, 'provide.el' appears to be missing from the tarball.
James
[-- Attachment #2: org-5.15.diff --]
[-- Type: text/plain, Size: 1673 bytes --]
--- org-5.15/org.el 2007-11-28 15:15:16.000000000 +0000
+++ org-5.15.mine/org.el 2007-11-29 02:27:15.000000000 +0000
@@ -12950,7 +12950,14 @@
(nth 1 entry)
org-default-notes-file))
(headline (nth 2 entry))
- (v-c (current-kill 0)) ;; FIXME: protection needed?
+ (v-c (if (or (and (eq window-system 'x)
+ (x-cut-buffer-or-selection-value))
+ (bound-and-true-p x-last-selected-text)
+ (bound-and-true-p x-last-selected-text-primary))
+ x-last-selected-text-primary
+ (if (> (length kill-ring) 0)
+ (current-kill 0)
+ nil)))
(v-t (format-time-string (car org-time-stamp-formats) (org-current-time)))
(v-T (format-time-string (cdr org-time-stamp-formats) (org-current-time)))
(v-u (concat "[" (substring v-t 1 -1) "]"))
@@ -17673,8 +17680,8 @@
(if (and org-clock-heading-function
(functionp org-clock-heading-function))
(setq org-clock-heading (funcall org-clock-heading-function))
- (if (looking-at org-todo-line-regexp)
- (setq org-clock-heading (match-string 3))
+ (if (looking-at org-complex-heading-regexp)
+ (setq org-clock-heading (match-string 4))
(setq org-clock-heading "???")))
(setq org-clock-heading (propertize org-clock-heading 'face nil))
(org-clock-find-position)
@@ -17793,6 +17800,9 @@
(set-buffer (marker-buffer org-clock-marker))
(goto-char org-clock-marker)
(delete-region (1- (point-at-bol)) (point-at-eol)))
+ (setq global-mode-string
+ (delq 'org-mode-line-string global-mode-string))
+ (force-mode-line-update)
(message "Clock canceled"))
(defun org-clock-goto (&optional delete-windows)
[-- Attachment #3: Type: text/plain, Size: 204 bytes --]
_______________________________________________
Emacs-orgmode mailing list
Remember: use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: Org-mode version 5.15
2007-11-29 3:53 ` James TD Smith
@ 2007-11-29 5:21 ` Carsten Dominik
0 siblings, 0 replies; 5+ messages in thread
From: Carsten Dominik @ 2007-11-29 5:21 UTC (permalink / raw)
To: James TD Smith; +Cc: emacs-orgmode
I applied the patch and fixed the problem with provide.el, thatnk you.
- Carsten
On 11/29/07, James TD Smith <ahktenzero@dsl.pipex.com> wrote:
> Thanks to Carsten for another org-mode release.
>
> I have found and fixed a few bugs in 5.15:
>
> The code for the %c escape in org-remember-apply-templates caused remember to
> stop working if the kill-ring was empty (current-kill raises an error if the kill
> ring is empty). It also didn't check the X selection, so it wouldn't work
> properly if x-select-enable-clipboard is nil (some of us like having two
> clipboards :).
>
> org-clock-cancel did not remove the clock information from the modeline.
>
> org-clock-in was using the third matched group of the org-todo-line regex as the
> clock string. This included the tags for the entry, so with the default
> org-tags-column setting of -80 the clock string was far too long for any entry
> with tags. The patch changes this to use org-complex-heading-regex, which can
> extract just the title.
>
> The patch attatched fixes all three of these.
>
> Also, 'provide.el' appears to be missing from the tarball.
>
> James
>
> _______________________________________________
> Emacs-orgmode mailing list
> Remember: use `Reply All' to send replies to the list.
> Emacs-orgmode@gnu.org
> http://lists.gnu.org/mailman/listinfo/emacs-orgmode
>
>
>
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: Org-mode version 5.15
2007-11-28 15:18 Org-mode version 5.15 Carsten Dominik
2007-11-29 3:53 ` James TD Smith
@ 2007-11-29 12:23 ` John Wiegley
2007-11-29 16:43 ` Carsten Dominik
1 sibling, 1 reply; 5+ messages in thread
From: John Wiegley @ 2007-11-29 12:23 UTC (permalink / raw)
To: Carsten Dominik; +Cc: emacs-orgmode
Hello Carsten, the Makefile for 5.15 makes reference to a file
"provide.el". What is that?
John
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: Org-mode version 5.15
2007-11-29 12:23 ` John Wiegley
@ 2007-11-29 16:43 ` Carsten Dominik
0 siblings, 0 replies; 5+ messages in thread
From: Carsten Dominik @ 2007-11-29 16:43 UTC (permalink / raw)
To: John Wiegley; +Cc: emacs-orgmode
[-- Attachment #1.1: Type: text/plain, Size: 330 bytes --]
It is a mini file containing only "(provide 'org-install)"
The next version will work again without this file, it was just a stupid
quick fix.
- Carsten
On Nov 29, 2007 1:23 PM, John Wiegley <jwiegley@gmail.com> wrote:
> Hello Carsten, the Makefile for 5.15 makes reference to a file
> "provide.el". What is that?
>
> John
>
[-- Attachment #1.2: Type: text/html, Size: 637 bytes --]
[-- Attachment #2: Type: text/plain, Size: 204 bytes --]
_______________________________________________
Emacs-orgmode mailing list
Remember: use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2007-11-29 16:43 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-11-28 15:18 Org-mode version 5.15 Carsten Dominik
2007-11-29 3:53 ` James TD Smith
2007-11-29 5:21 ` Carsten Dominik
2007-11-29 12:23 ` John Wiegley
2007-11-29 16:43 ` Carsten Dominik
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).