diff options
| author | John Wiegley | 2001-05-10 03:27:46 +0000 |
|---|---|---|
| committer | John Wiegley | 2001-05-10 03:27:46 +0000 |
| commit | d089e2995b65b11ab06fdd5b6328b4f611f3e7fb (patch) | |
| tree | 56537edfb4940322bc94e5b30a60ff02057bb1d3 | |
| parent | 8c9245e2a54cd48a693adfbd3a2b34f2168c4e45 (diff) | |
| download | emacs-d089e2995b65b11ab06fdd5b6328b4f611f3e7fb.tar.gz emacs-d089e2995b65b11ab06fdd5b6328b4f611f3e7fb.zip | |
*** empty log message ***
| -rw-r--r-- | lisp/ChangeLog | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 737b1190e8d..870a1a6f28a 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,32 @@ | |||
| 1 | 2001-05-09 John Wiegley <johnw@gnu.org> | 1 | 2001-05-09 John Wiegley <johnw@gnu.org> |
| 2 | 2 | ||
| 3 | * eshell/esh-arg.el (eshell-parse-argument-hook): If a number is | ||
| 4 | encountered as an argument, don't convert it right away, but tag | ||
| 5 | the first character of the string with the text properties | ||
| 6 | `number', which signifies to `eshell-lisp-command' that the | ||
| 7 | argument should be passed through `string-to-number' if it is | ||
| 8 | actually used in the call to a Lisp function. | ||
| 9 | |||
| 10 | * eshell/esh-cmd.el (eshell-lisp-command): Before calling a Lisp | ||
| 11 | function, convert any string arguments that have been tagged as | ||
| 12 | "numbers", by calling string-to-number. | ||
| 13 | |||
| 14 | * eshell/esh-util.el (eshell-number-regexp): Now that number | ||
| 15 | conversions only happen for Lisp function calls, the number regexp | ||
| 16 | should now match all integer and floating point forms. | ||
| 17 | |||
| 18 | * eshell/esh-proc.el: Disable `eshell-stop-process' and | ||
| 19 | `eshell-continue-process', since they are both nonfunctional at | ||
| 20 | the moment. | ||
| 21 | (eshell-proc-initialize): Don't bind keys for | ||
| 22 | `eshell-stop-process' or `eshell-continue-process'. | ||
| 23 | |||
| 24 | * eshell/em-unix.el (eshell-shuffle-files): Apply | ||
| 25 | `directory-file-name' before calling `file-name-directory'. | ||
| 26 | |||
| 27 | * eshell/em-hist.el (eshell-add-to-history): Reference to | ||
| 28 | `eshell-history-ring' needed to be `eshell-history-index'. | ||
| 29 | |||
| 3 | * calendar/timeclock.el (timeclock-find-discrep): Initialize | 30 | * calendar/timeclock.el (timeclock-find-discrep): Initialize |
| 4 | `elapsed' to 0. | 31 | `elapsed' to 0. |
| 5 | (timeclock-find-discrep): Set `timeclock-last-event-workday' if | 32 | (timeclock-find-discrep): Set `timeclock-last-event-workday' if |