annotate lwlib/lwlib-utils.h @ 72398:1c9c6dd0b6d3
(org-clock-special-range, org-clock-update-time-maybe):
New functions.
(org-stamp-time-of-day-regexp): Allow weekday to be of word chars,
not only a-z.
(org-agenda-get-blocks): Allow multiple blocks per headline.
(org-timestamp-change): Call `org-clock-update-time-maybe'.
(org-export-html-title-format)
(org-export-html-toplevel-hlevel): New options.
(org-export-language-setup): Added support for Czech.
(org-mode, org-insert-todo-heading, org-find-visible)
(org-find-invisible, org-invisible-p, org-invisible-p2)
(org-back-to-heading, org-on-heading-p, org-up-heading-all)
(org-show-subtree, org-show-entry, org-make-options-regexp):
Removed compatibility support for old outline-mode.
(org-check-occur-regexp): Funtion removed.
(org-on-heading-p, org-back-to-heading): Made defalias.
(org-set-local): New defsubst.
(org-set-regexps-and-options, org-mode)
(org-set-font-lock-defaults, org-edit-agenda-file-list)
(org-timeline, org-agenda-list, org-todo-list, org-tags-view)
(org-remember-apply-template, org-table-edit-field)
(org-table-edit-formulas, orgtbl-mode, org-export-as-ascii)
(org-set-autofill-regexps): Use `org-set-local'.
(org-table-eval-formula): Fixed bug with parsing of display flags.
author |
Carsten Dominik <dominik@science.uva.nl> |
date |
Tue, 15 Aug 2006 11:55:38 +0000 |
parents |
695cf19ef79e |
children |
375f2633d815 e16f43875a48 |
rev |
line source |
5626
|
1 #ifndef _LWLIB_UTILS_H_
|
|
2 #define _LWLIB_UTILS_H_
|
|
3
|
29466
|
4 void XtNoClearRefreshWidget __P ((Widget));
|
5626
|
5
|
29466
|
6 typedef void (*XtApplyToWidgetsProc) __P ((Widget, XtPointer));
|
|
7 typedef void* (*XtApplyUntilToWidgetsProc) __P ((Widget, XtPointer));
|
5626
|
8
|
29466
|
9 void XtApplyToWidgets __P ((Widget, XtApplyToWidgetsProc, XtPointer));
|
|
10 void *XtApplyUntilToWidgets __P ((Widget, XtApplyUntilToWidgetsProc, XtPointer));
|
5626
|
11
|
29466
|
12 Widget *XtCompositeChildren __P ((Widget, unsigned int *));
|
5626
|
13
|
|
14 /* returns True is the widget is being destroyed, False otherwise */
|
|
15 Boolean
|
29466
|
16 XtWidgetBeingDestroyedP __P ((Widget widget));
|
5626
|
17
|
29466
|
18 void XtSafelyDestroyWidget __P ((Widget));
|
5626
|
19
|
|
20 #endif /* _LWLIB_UTILS_H_ */
|
52401
|
21
|
|
22 /* arch-tag: 705efd86-9319-4447-80f6-16aa5b349809
|
|
23 (do not change this comment) */
|