diff options
| author | Stefan Monnier | 2013-10-29 10:46:23 -0400 |
|---|---|---|
| committer | Stefan Monnier | 2013-10-29 10:46:23 -0400 |
| commit | dee4ba59792238f9fd69ba7f5bf4f2711da52030 (patch) | |
| tree | da0a9787aab3899e967618f493e16b56be8ed47d /src/buffer.c | |
| parent | e54711f396a93b280f6a8b879330e0780425c1ae (diff) | |
| download | emacs-dee4ba59792238f9fd69ba7f5bf4f2711da52030.tar.gz emacs-dee4ba59792238f9fd69ba7f5bf4f2711da52030.zip | |
* src/eval.c (run_hook_with_args): Use FUNCTIONP.
* test/indent/css-mode.css (.x2): Test alignement inside braces.
* test/indent/prolog.prolog: Test alignment of ->; with operator at bol.
Diffstat (limited to 'src/buffer.c')
| -rw-r--r-- | src/buffer.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/buffer.c b/src/buffer.c index ef04ca7018d..e44908a543c 100644 --- a/src/buffer.c +++ b/src/buffer.c | |||
| @@ -2074,7 +2074,7 @@ the current buffer's major mode. */) | |||
| 2074 | count = SPECPDL_INDEX (); | 2074 | count = SPECPDL_INDEX (); |
| 2075 | 2075 | ||
| 2076 | /* To select a nonfundamental mode, | 2076 | /* To select a nonfundamental mode, |
| 2077 | select the buffer temporarily and then call the mode function. */ | 2077 | select the buffer temporarily and then call the mode function. */ |
| 2078 | 2078 | ||
| 2079 | record_unwind_protect (save_excursion_restore, save_excursion_save ()); | 2079 | record_unwind_protect (save_excursion_restore, save_excursion_save ()); |
| 2080 | 2080 | ||
| @@ -2114,7 +2114,7 @@ set_buffer_internal_1 (register struct buffer *b) | |||
| 2114 | 2114 | ||
| 2115 | old_buf = current_buffer; | 2115 | old_buf = current_buffer; |
| 2116 | current_buffer = b; | 2116 | current_buffer = b; |
| 2117 | last_known_column_point = -1; /* invalidate indentation cache */ | 2117 | last_known_column_point = -1; /* Invalidate indentation cache. */ |
| 2118 | 2118 | ||
| 2119 | if (old_buf) | 2119 | if (old_buf) |
| 2120 | { | 2120 | { |
| @@ -2138,7 +2138,7 @@ set_buffer_internal_1 (register struct buffer *b) | |||
| 2138 | fetch_buffer_markers (b); | 2138 | fetch_buffer_markers (b); |
| 2139 | 2139 | ||
| 2140 | /* Look down buffer's list of local Lisp variables | 2140 | /* Look down buffer's list of local Lisp variables |
| 2141 | to find and update any that forward into C variables. */ | 2141 | to find and update any that forward into C variables. */ |
| 2142 | 2142 | ||
| 2143 | do | 2143 | do |
| 2144 | { | 2144 | { |