+2013-11-12 Paul Eggert <eggert@cs.ucla.edu>
+
+ * buffer.c (Fforce_mode_line_update): Don't fall off end of function
+ that requires a return value.
+ (Fset_buffer_modified_p): Take advantage of this change to do
+ a tail call.
+
2013-11-11 Stefan Monnier <monnier@iro.umontreal.ca>
* buffer.c (Frestore_buffer_modified_p): Sync it with
update_mode_lines = 10;
current_buffer->prevent_redisplay_optimizations_p = 1;
}
+ return all;
}
DEFUN ("set-buffer-modified-p", Fset_buffer_modified_p, Sset_buffer_modified_p,
Ideally, I think there should be another mechanism for fontifying
buffers without "modifying" buffers, or redisplay should be
smarter about updating the `*' in mode lines. --gerd */
- Fforce_mode_line_update (Qnil);
-
- return flag;
+ return Fforce_mode_line_update (Qnil);
}
DEFUN ("restore-buffer-modified-p", Frestore_buffer_modified_p,