comparison lisp/ChangeLog @ 64398:de27914c814e

*** empty log message ***
author Richard M. Stallman <rms@gnu.org>
date Sat, 16 Jul 2005 19:04:57 +0000
parents 72c8984e7af3
children 7f04989042c3
comparison
equal deleted inserted replaced
64397:876aa7f08950 64398:de27914c814e
1 2005-07-16 Richard M. Stallman <rms@gnu.org>
2
3 * emacs-lisp/bytecomp.el (byte-compile-and-recursion): New function.
4 (byte-compile-and): Use byte-compile-and-recursion.
5 (byte-compile-or-recursion): New function.
6 (byte-compile-or): Use that.
7 (byte-compile-if): Guard the else-clause too.
8 (byte-compile-maybe-guarded): Handle (not (featurep 'emacs)).
9 Simplify conditions of the form (not (not BASE)).
10
11 * progmodes/pascal.el (pascal-outline-map): Use fboundp, not boundp.
12 Correctly avoid warnings.
13 (pascal-outline): Likewise.
14
15 * progmodes/f90.el (f90-abbrev-start): Avoid warning.
16
17 * progmodes/asm-mode.el (asm-comment): Use with-no-warnings.
18
19 * play/tetris.el (tetris-mode): Avoid warning.
20
21 * play/snake.el (snake-mode): Avoid warning.
22
23 * play/gamegrid.el (gamegrid-shared-game-dir): Add defvar.
24 (gamegrid-set-display-table): Avoid warning.
25 (gamegrid-set-timer): Likewise.
26 (gamegrid-make-mono-tty-face): Use set-face-inverse-video-p.
27 (gamegrid-add-score-with-update-game-score-1): Take FILE
28 as argument.
29 (gamegrid-add-score-with-update-game-score): Pass that argument.
30 Rename have-shared-game-dir to gamegrid-shared-game-dir.
31
32 * net/eudc-hotlist.el (eudc-hotlist-mode): Avoid warnings.
33
34 * net/eudc-bob.el (eudc-jump-to-event): Avoid warning.
35 (eudc-bob-display-jpeg, eudc-bob-can-display-inline-images): Likewise.
36
37 * mail/uce.el (uce-reply-to-uce): Replace beginning-of-buffer
38 and insert-file.
39
40 * mail/supercite.el (sc-no-blank-line-or-header): Avoid warning.
41 (sc-ask): Avoid warnings.
42
43 * eshell/em-hist.el (eshell-rebind-keys-alist): Add defvar.
44 (eshell-hist-initialize): Use that var the natural way.
45
46 * emulation/viper-init.el (viper-activate-input-method): Avoid warning.
47
48 * emacs-lisp/re-builder.el (reb-cook-regexp): Avoid
49 warning calling lre-compile-string.
50 (reb-color-display-p): Avoid warning.
51
52 * calculator.el (calculator-last-input): Guard uses
53 of event-key and key-press-event-p.
54 (event-key, key-press-event-p): Delete definitions.
55
56 * emacs-lisp/find-gc.el (find-gc-unsafe-list)
57 (find-gc-source-directory, find-gc-subrs-used)
58 (find-gc-noreturn-list, find-gc-source-files):
59 Vars renamed and defvar'd.
60
61 * emacs-lisp/checkdoc.el (checkdoc-make-overlay)
62 (checkdoc-overlay-put, checkdoc-delete-overlay)
63 (checkdoc-overlay-start, checkdoc-overlay-end)
64 (checkdoc-mode-line-update, checkdoc-char=):
65 Define such that compiler knows they are defined.
66 (checkdoc-call-eval-buffer): Deleted. Use eval-buffer directly.
67 (checkdoc-read-event): Deleted. Use read-event directly.
68
69 * whitespace.el (whitespace-make-overlay)
70 (whitespace-overlay-put, whitespace-delete-overlay)
71 (whitespace-overlay-start, whitespace-overlay-end):
72 Define such that compiler knows they are defined.
73 (whitespace): Move conditional inside.
74
75 * tempo.el (tempo-insert-template): Suppress warning.
76
77 * ediff-diff.el (longlines-mode): Add defvar.
78
1 2005-07-16 Gary Howell <g1howell-list@yahoo.com> (tiny change) 79 2005-07-16 Gary Howell <g1howell-list@yahoo.com> (tiny change)
2 80
3 * server.el: Bind "C-x #" in a way that works even if C-x is 81 * server.el: Bind "C-x #" in a way that works even if C-x is
4 redefined to a command key, not a prefix key. 82 redefined to a command key, not a prefix key.
5 83