comparison lisp/ChangeLog @ 63837:51976224295a

*** empty log message ***
author Stefan Monnier <monnier@iro.umontreal.ca>
date Wed, 29 Jun 2005 08:06:10 +0000
parents 98c693a81ce6
children a7d45b7cc6d5
comparison
equal deleted inserted replaced
63836:e6973993a720 63837:51976224295a
1 2005-06-29 Stefan Monnier <monnier@iro.umontreal.ca>
2
3 * progmodes/cperl-mode.el (cperl-find-pods-heres): Don't gratuitously
4 reset the syntax-table to cperl-mode-syntax-table.
5 (cperl-mode): Make _ into word-syntax during font-locking so "print" in
6 "foo_print_bar" is not matched as a reserved keyword.
7
1 2005-06-29 Carsten Dominik <dominik@science.uva.nl> 8 2005-06-29 Carsten Dominik <dominik@science.uva.nl>
2 9
3 * textmodes/org.el: (orgtbl-setup): New function, for delayed 10 * textmodes/org.el: (orgtbl-setup): New function, for delayed
4 setup for the orgtbl commands. 11 setup for the orgtbl commands.
5 (org-calc-default-modes): New option. 12 (org-calc-default-modes): New option.
7 (org-diary): Call `org-compile-prefix-format'. 14 (org-diary): Call `org-compile-prefix-format'.
8 (org-table-formula-substitute-names): New function. 15 (org-table-formula-substitute-names): New function.
9 (org-agenda-day-view, org-agenda-week-view): New commands. 16 (org-agenda-day-view, org-agenda-week-view): New commands.
10 (org-agenda-toggle-week-view): Command removed. 17 (org-agenda-toggle-week-view): Command removed.
11 (org-tbl-menu): Split off from org-org-menu. 18 (org-tbl-menu): Split off from org-org-menu.
12 (org-mode): Moved removal of outline-mode menus to here. 19 (org-mode): Move removal of outline-mode menus to here.
13 (org-table-formula-debug): New option. 20 (org-table-formula-debug): New option.
14 (org-table-insert-row): Keep first field if just "#" or "*". 21 (org-table-insert-row): Keep first field if just "#" or "*".
15 (org-mode): Paragraph regexps fixed. 22 (org-mode): Paragraph regexps fixed.
16 (org-table-recalculate-regexp): New constant. 23 (org-table-recalculate-regexp): New constant.
17 (org-table-justify-field-maybe): Avoid replace if not necessary. 24 (org-table-justify-field-maybe): Avoid replace if not necessary.
18 (org-copy-special, org-cut-special): Use `call-interactively'. 25 (org-copy-special, org-cut-special): Use `call-interactively'.
19 (org-table-copy-region): Take region from `interactive' call. 26 (org-table-copy-region): Take region from `interactive' call.
20 (org-trim): Return string even if no match. 27 (org-trim): Return string even if no match.
21 (org-formula): New face. 28 (org-formula): New face.
22 (org-set-font-lock-defaults): No longer highlight "FIXME". But 29 (org-set-font-lock-defaults): No longer highlight "FIXME".
23 highlight formula-related fields in table. 30 But highlight formula-related fields in table.
24 (org-table-p): Use regexp, not fontification. 31 (org-table-p): Use regexp, not fontification.
25 (org-table-align): Handle white space at end of line. 32 (org-table-align): Handle white space at end of line.
26 (org-table-formula-evaluate-inline): New option. 33 (org-table-formula-evaluate-inline): New option.
27 (org-mode): Auto-wrapping in comment lines turned off. 34 (org-mode): Auto-wrapping in comment lines turned off.
28 (org-table-copy-down): Evaluate only in copied field, not in 35 (org-table-copy-down): Evaluate only in copied field, not in
29 destination. 36 destination.
30 (org-table-current-formula): Variable removed. 37 (org-table-current-formula): Variable removed.
31 (org-table-store-formulas, org-table-get-stored-formulas) 38 (org-table-store-formulas, org-table-get-stored-formulas)
32 (org-table-modify-formulas, org-table-replace-in-formulas) 39 (org-table-modify-formulas, org-table-replace-in-formulas)
33 (org-table-maybe-eval-formula): New functions. 40 (org-table-maybe-eval-formula): New functions.
34 (org-table-get-formula): Modified to use stored formulas. 41 (org-table-get-formula): Modify to use stored formulas.
35 (org-table-insert-column, org-table-delete-column) 42 (org-table-insert-column, org-table-delete-column)
36 (org-table-move-column): Call `org-table-modify-formulas'. 43 (org-table-move-column): Call `org-table-modify-formulas'.
37 (org-complete): Add completion for keyword formulas. 44 (org-complete): Add completion for keyword formulas.
38 (orgtbl-mode): Pull orgtbl-mode-map to start of 45 (orgtbl-mode): Pull orgtbl-mode-map to start of
39 minor-mode-map-alist. 46 minor-mode-map-alist.
40 47
41 2005-06-29 Stefan Monnier <monnier@iro.umontreal.ca> 48 2005-06-29 Stefan Monnier <monnier@iro.umontreal.ca>
49
50 * progmodes/python.el (python-check): Require `compile' before
51 modifying its variables.
42 52
43 * newcomment.el (comment-indent-default): Don't get fooled by an early 53 * newcomment.el (comment-indent-default): Don't get fooled by an early
44 end of buffer. 54 end of buffer.
45 55
46 2005-06-28 Vinicius Jose Latorre <viniciusjl@ig.com.br> 56 2005-06-28 Vinicius Jose Latorre <viniciusjl@ig.com.br>