diff options
| author | Paul Eggert | 2012-09-03 02:22:43 -0700 |
|---|---|---|
| committer | Paul Eggert | 2012-09-03 02:22:43 -0700 |
| commit | 26d4541d4c0c9a71453143c17d392291c41856ff (patch) | |
| tree | 2f69f4cf68d4e30f0e108ee7336f97a76441e396 /src/buffer.c | |
| parent | c5e28e39275c4a5a63adbe3e1e3b23a58c4a4bb8 (diff) | |
| download | emacs-26d4541d4c0c9a71453143c17d392291c41856ff.tar.gz emacs-26d4541d4c0c9a71453143c17d392291c41856ff.zip | |
Fix minor problems found by static checking.
* buffer.c (Fdelete_all_overlays): Return nil.
* doc.c (Fsubstitute_command_keys):
* regex.c (WEAK_ALIAS):
* xdisp.c (redisplay_internal):
Move initialization down, to pacify GCC 4.7.1 -Wjump-misses-init.
Diffstat (limited to 'src/buffer.c')
| -rw-r--r-- | src/buffer.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/buffer.c b/src/buffer.c index ce6f42f136f..f4d38e50a47 100644 --- a/src/buffer.c +++ b/src/buffer.c | |||
| @@ -4091,6 +4091,7 @@ buffer. */) | |||
| 4091 | } | 4091 | } |
| 4092 | 4092 | ||
| 4093 | delete_all_overlays (buf); | 4093 | delete_all_overlays (buf); |
| 4094 | return Qnil; | ||
| 4094 | } | 4095 | } |
| 4095 | 4096 | ||
| 4096 | /* Overlay dissection functions. */ | 4097 | /* Overlay dissection functions. */ |