diff options
| author | Stefan Monnier | 2006-01-03 18:44:42 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2006-01-03 18:44:42 +0000 |
| commit | 43ed65aceabebdbfbe7d2f31fe63fca0cd36858b (patch) | |
| tree | 40ab5feff715d28a9be4534d4028a1ca3d4de41e /lisp/ChangeLog | |
| parent | b7a5a20839d6c308663c99abca5135ad684b8ed4 (diff) | |
| download | emacs-43ed65aceabebdbfbe7d2f31fe63fca0cd36858b.tar.gz emacs-43ed65aceabebdbfbe7d2f31fe63fca0cd36858b.zip | |
(flymake-check-start-time, flymake-check-was-interrupted, flymake-err-info)
(flymake-is-running, flymake-last-change-time, flymake-new-err-info)
(flymake-timer): Move definitions, so we can remove earlier declarations.
(flymake-replace-regexp-in-string, flymake-split-string)
(flymake-get-temp-dir): Use defalias.
(flymake-popup-menu): Remove `pos' argument. Use posn-at-point.
(flymake-xemacs-window-edges): Remove unused function.
(flymake-get-point-pixel-pos): Move.
(flymake-pid-to-names, flymake-reg-names)
(flymake-get-source-buffer-name, flymake-unreg-names): Remove.
Replace by a simple list flymake-processes and by process-buffer.
Update callers. Other than simplify the code, it uses buffers rather
than buffer-names so it doesn't get confused by uniquify.
(flymake-buffer-data): The global value should just be nil.
Diffstat (limited to 'lisp/ChangeLog')
| -rw-r--r-- | lisp/ChangeLog | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index c1877a947d0..4af6886a499 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,21 @@ | |||
| 1 | 2006-01-03 Stefan Monnier <monnier@iro.umontreal.ca> | 1 | 2006-01-03 Stefan Monnier <monnier@iro.umontreal.ca> |
| 2 | 2 | ||
| 3 | * progmodes/flymake.el (flymake-check-start-time) | ||
| 4 | (flymake-check-was-interrupted, flymake-err-info, flymake-is-running) | ||
| 5 | (flymake-last-change-time, flymake-new-err-info, flymake-timer): | ||
| 6 | Move definition, so we can remove redundant earlier declaration. | ||
| 7 | (flymake-replace-regexp-in-string, flymake-split-string) | ||
| 8 | (flymake-get-temp-dir): Use defalias. | ||
| 9 | (flymake-popup-menu): Remove `pos' argument. Use posn-at-point. | ||
| 10 | (flymake-xemacs-window-edges): Remove unused function. | ||
| 11 | (flymake-get-point-pixel-pos): Move. | ||
| 12 | (flymake-pid-to-names, flymake-reg-names) | ||
| 13 | (flymake-get-source-buffer-name, flymake-unreg-names): Remove. | ||
| 14 | Replace by a simple list flymake-processes and by process-buffer. | ||
| 15 | Update callers. Other than simplify the code, it uses buffers rather | ||
| 16 | than buffer-names so it doesn't get confused by uniquify. | ||
| 17 | (flymake-buffer-data): The global value should just be nil. | ||
| 18 | |||
| 3 | * emacs-lisp/bytecomp.el (byte-compile-file-form-defalias): | 19 | * emacs-lisp/bytecomp.el (byte-compile-file-form-defalias): |
| 4 | Optimize the body of a defalias like any other code. | 20 | Optimize the body of a defalias like any other code. |
| 5 | 21 | ||