diff options
| author | Stefan Monnier | 2006-01-19 19:03:33 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2006-01-19 19:03:33 +0000 |
| commit | d2eed686a9d535b707d794e72768eb944cca968a (patch) | |
| tree | eea06a5aa37dba008072afab0b2c1a4cda37474b | |
| parent | c94c4d0ac6cd54656b55269d18ef60174aab238e (diff) | |
| download | emacs-d2eed686a9d535b707d794e72768eb944cca968a.tar.gz emacs-d2eed686a9d535b707d794e72768eb944cca968a.zip | |
(table-mode-indicator): Typo in last change.
| -rw-r--r-- | lisp/ChangeLog | 55 | ||||
| -rw-r--r-- | lisp/textmodes/table.el | 2 |
2 files changed, 49 insertions, 8 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index ef375b7ec87..9bc9a223433 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2006-01-19 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 2 | |||
| 3 | * textmodes/table.el (table-mode-indicator): Typo in last change. | ||
| 4 | |||
| 1 | 2006-01-19 Richard M. Stallman <rms@gnu.org> | 5 | 2006-01-19 Richard M. Stallman <rms@gnu.org> |
| 2 | 6 | ||
| 3 | * outline.el (hide-leaves): Don't call outline-end-of-heading. | 7 | * outline.el (hide-leaves): Don't call outline-end-of-heading. |
| @@ -21,10 +25,10 @@ | |||
| 21 | 25 | ||
| 22 | 2006-01-19 Masatake YAMATO <jet@gyve.org> | 26 | 2006-01-19 Masatake YAMATO <jet@gyve.org> |
| 23 | 27 | ||
| 24 | * progmodes/cpp.el (cpp-edit-load): Make the order of | 28 | * progmodes/cpp.el (cpp-edit-load): Make the order of |
| 25 | listed conditions in a base C code buffer and its associate | 29 | listed conditions in a base C code buffer and its associate |
| 26 | CPP Edit buffer the same. | 30 | CPP Edit buffer the same. |
| 27 | 31 | ||
| 28 | 2006-01-19 Kenichi Handa <handa@m17n.org> | 32 | 2006-01-19 Kenichi Handa <handa@m17n.org> |
| 29 | 33 | ||
| 30 | * mail/rmail.el (rmail-enable-mime): Docstring fixed. | 34 | * mail/rmail.el (rmail-enable-mime): Docstring fixed. |
| @@ -32,10 +36,48 @@ | |||
| 32 | (rmail-require-mime-maybe): Use display-warning to show a warning | 36 | (rmail-require-mime-maybe): Use display-warning to show a warning |
| 33 | message. | 37 | message. |
| 34 | 38 | ||
| 35 | * international/mule.el (auto-coding-regexp-alist-lookup): New | 39 | * international/mule.el (auto-coding-regexp-alist-lookup): New fun. |
| 36 | function. | ||
| 37 | (find-auto-coding): Use auto-coding-regexp-alist-lookup. | 40 | (find-auto-coding): Use auto-coding-regexp-alist-lookup. |
| 38 | 41 | ||
| 42 | 2006-01-18 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 43 | |||
| 44 | * array.el: Move defvars out of eval-when-compile. | ||
| 45 | (array-make-template): Replace undeclared global var with a local one. | ||
| 46 | (array-mode): Inline initialization functions. | ||
| 47 | (array-init-local-variables, array-init-max-row) | ||
| 48 | (array-init-max-column, array-init-columns-per-line) | ||
| 49 | (array-init-field-width, array-init-rows-numbered) | ||
| 50 | (array-init-line-length, array-init-lines-per-row): Remove. | ||
| 51 | |||
| 52 | * play/doctor.el: Move defvars out of eval-when-compile. Use dolist. | ||
| 53 | (doc-mode-map): Define explicitly. | ||
| 54 | (doctor-txtype): Use mapc. | ||
| 55 | |||
| 56 | * textmodes/table.el: Move defvars out of eval-when-compile. | ||
| 57 | Remove harmful code meant to avoid byte-compiler warnings. | ||
| 58 | (table-fixed-mode-indicator): Remove. Use a more complex mode-line | ||
| 59 | specification that checks table-fixed-width-mode directly. | ||
| 60 | (table-recognize-region, table-recognize-cell): | ||
| 61 | Use restore-buffer-modified-p. | ||
| 62 | (table-fixed-width-mode): Remove code that refreshes | ||
| 63 | table-fixed-mode-indicator. | ||
| 64 | (*table--cell-describe-bindings, *table--cell-describe-mode): | ||
| 65 | Avoid obsolete name print-help-return-message. | ||
| 66 | (table--test-cell-list): Don't use replace-regexp from elisp. | ||
| 67 | (table--point-entered-cell-function, table--point-left-cell-function): | ||
| 68 | Don't set table-fixed-mode-indicator, use force-mode-line-update. | ||
| 69 | |||
| 70 | * textmodes/org.el: Move defvars out of eval-when-compile. Move code | ||
| 71 | that was after the end of file. Use buffer-file-name variable. | ||
| 72 | (org-timestamp-change): Use with-current-buffer. | ||
| 73 | (org-todo-list): Don't unnecessarily define a new buffer-local var. | ||
| 74 | (org-agenda-file-to-end, org-agenda-file-to-front): Remove unused arg | ||
| 75 | `file'. | ||
| 76 | |||
| 77 | * progmodes/fortran.el: Move defvars out of eval-when-compile. | ||
| 78 | (fortran-break-line): Remove unused var `opoint'. | ||
| 79 | (fortran-abbrev-start): Obey help-event-list. | ||
| 80 | |||
| 39 | 2006-01-18 Jesper Harder <harder@phys.au.dk> | 81 | 2006-01-18 Jesper Harder <harder@phys.au.dk> |
| 40 | 82 | ||
| 41 | * mail/smtpmail.el (smtpmail-send-it): Use insert-buffer-substring. | 83 | * mail/smtpmail.el (smtpmail-send-it): Use insert-buffer-substring. |
| @@ -46,12 +88,11 @@ | |||
| 46 | derived from maiefile-mode. | 88 | derived from maiefile-mode. |
| 47 | (makefile-imake-mode-syntax-table): New syntax table | 89 | (makefile-imake-mode-syntax-table): New syntax table |
| 48 | derived from makefile-mode-syntax-table. | 90 | derived from makefile-mode-syntax-table. |
| 49 | (makefile-mode): Write about makefile-imake-mode in | 91 | (makefile-mode): Write about makefile-imake-mode in doc string. |
| 50 | doc string. | ||
| 51 | (makefile-mode-map): Bind "\C-c\C-m\C-i" to makefile-imake-mode. | 92 | (makefile-mode-map): Bind "\C-c\C-m\C-i" to makefile-imake-mode. |
| 52 | (makefile-imake-font-lock-keywords): New font lock keywords. | 93 | (makefile-imake-font-lock-keywords): New font lock keywords. |
| 53 | 94 | ||
| 54 | * files.el (auto-mode-alist): Added Imakefile. | 95 | * files.el (auto-mode-alist): Add Imakefile. |
| 55 | 96 | ||
| 56 | 2006-01-17 Agustin Martin <agustin.martin@hispalinux.es> | 97 | 2006-01-17 Agustin Martin <agustin.martin@hispalinux.es> |
| 57 | 98 | ||
diff --git a/lisp/textmodes/table.el b/lisp/textmodes/table.el index 80f062ae3fe..db8d2c94c46 100644 --- a/lisp/textmodes/table.el +++ b/lisp/textmodes/table.el | |||
| @@ -913,7 +913,7 @@ This is always set to nil at the entry to `table-with-cache-buffer' before execu | |||
| 913 | "For mode line indicator") | 913 | "For mode line indicator") |
| 914 | ;; This is not a real minor-mode but placed in the minor-mode-alist | 914 | ;; This is not a real minor-mode but placed in the minor-mode-alist |
| 915 | ;; so that we can show the indicator on the mode line handy. | 915 | ;; so that we can show the indicator on the mode line handy. |
| 916 | (make-variable-buffer-local table-mode-indicator) | 916 | (make-variable-buffer-local 'table-mode-indicator) |
| 917 | (unless (assq table-mode-indicator minor-mode-alist) | 917 | (unless (assq table-mode-indicator minor-mode-alist) |
| 918 | (push '(table-mode-indicator (table-fixed-width-mode " Fixed-Table" " Table")) | 918 | (push '(table-mode-indicator (table-fixed-width-mode " Fixed-Table" " Table")) |
| 919 | minor-mode-alist)) | 919 | minor-mode-alist)) |