aboutsummaryrefslogtreecommitdiffstats
path: root/src/ChangeLog
diff options
context:
space:
mode:
authorStefan Monnier2012-06-18 11:57:41 -0400
committerStefan Monnier2012-06-18 11:57:41 -0400
commit1053a8716ba9f1834eccff14ece377928a4bd244 (patch)
tree775e64585480452dcaa629ee9ffa2b85505d3e01 /src/ChangeLog
parentb7e8d081674c24b19c5ee39892a72aef25c1dfcc (diff)
downloademacs-1053a8716ba9f1834eccff14ece377928a4bd244.tar.gz
emacs-1053a8716ba9f1834eccff14ece377928a4bd244.zip
Fix return value of `defun' and un-define it.
* src/data.c (Fdefalias): Return `symbol'. * doc/lispref/functions.texi (Defining Functions): * doc/lispref/macros.texi (Defining Macros): Un-define the return value of `defun', `defmacro' and `defalias'. Fixes: debbugs:11686
Diffstat (limited to 'src/ChangeLog')
-rw-r--r--src/ChangeLog28
1 files changed, 16 insertions, 12 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 9a239de5b99..080748236b4 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,8 +1,12 @@
12012-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
2
3 * data.c (Fdefalias): Return `symbol' (bug#11686).
4
12012-06-18 Martin Rudalics <rudalics@gmx.at> 52012-06-18 Martin Rudalics <rudalics@gmx.at>
2 6
3 * buffer.c (Fkill_buffer): Don't throw an error when the buffer 7 * buffer.c (Fkill_buffer): Don't throw an error when the buffer
4 gets killed during executing of this function (Bug#11665). Try 8 gets killed during executing of this function (Bug#11665).
5 to always return Qt when the buffer has been actually killed. 9 Try to always return Qt when the buffer has been actually killed.
6 (Vkill_buffer_query_functions): In doc-string say that functions 10 (Vkill_buffer_query_functions): In doc-string say that functions
7 run by this hook should not change the current buffer. 11 run by this hook should not change the current buffer.
8 12
@@ -56,8 +60,8 @@
56 (x_draw_glyph_string): Use them. 60 (x_draw_glyph_string): Use them.
57 * xfaces.c (Qline, Qwave): New Lisp objects. 61 * xfaces.c (Qline, Qwave): New Lisp objects.
58 (check_lface_attrs, merge_face_ref) 62 (check_lface_attrs, merge_face_ref)
59 (Finternal_set_lisp_face_attribute, realize_x_face): Handle 63 (Finternal_set_lisp_face_attribute, realize_x_face):
60 wave-style underline face attributes. 64 Handle wave-style underline face attributes.
61 * xterm.c (x_draw_underwave): New function. 65 * xterm.c (x_draw_underwave): New function.
62 (x_draw_glyph_string): Use it. 66 (x_draw_glyph_string): Use it.
63 67
@@ -130,8 +134,8 @@
130 134
1312012-06-16 Eli Zaretskii <eliz@gnu.org> 1352012-06-16 Eli Zaretskii <eliz@gnu.org>
132 136
133 * xdisp.c (set_cursor_from_row): Don't dereference glyphs_end. If 137 * xdisp.c (set_cursor_from_row): Don't dereference glyphs_end.
134 all the glyphs of the glyph row came from strings, and we have no 138 If all the glyphs of the glyph row came from strings, and we have no
135 cursor positioning clues, put the cursor on the first glyph of the 139 cursor positioning clues, put the cursor on the first glyph of the
136 row. 140 row.
137 (handle_face_prop): Use chunk-relative overlay string index when 141 (handle_face_prop): Use chunk-relative overlay string index when
@@ -164,8 +168,8 @@
164 Simplify under the assumption that USE_2_TAGS_FOR_INTS is defined. 168 Simplify under the assumption that USE_2_TAGS_FOR_INTS is defined.
165 (INTTYPEBITS): New macro, for clarity. 169 (INTTYPEBITS): New macro, for clarity.
166 (INTMASK, MOST_POSITIVE_FIXNUM): Use it. 170 (INTMASK, MOST_POSITIVE_FIXNUM): Use it.
167 (LISP_INT1_TAG, LISP_STRING_TAG, LISP_INT_TAG_P): Simplify 171 (LISP_INT1_TAG, LISP_STRING_TAG, LISP_INT_TAG_P):
168 now that USE_LSB_TAG is always defined. 172 Simplify now that USE_LSB_TAG is always defined.
169 (TYPEMASK, XINT) [USE_LSB_TAG]: Remove unnecessary cast. 173 (TYPEMASK, XINT) [USE_LSB_TAG]: Remove unnecessary cast.
170 (make_number) [!USE_LSB_TAG]: Use INTMASK; that's simpler. 174 (make_number) [!USE_LSB_TAG]: Use INTMASK; that's simpler.
171 175
@@ -183,11 +187,11 @@
183 * lisp.h (Lisp_Object) [CHECK_LISP_OBJECT_TYPE]: Define as struct 187 * lisp.h (Lisp_Object) [CHECK_LISP_OBJECT_TYPE]: Define as struct
184 instead of union. 188 instead of union.
185 (XLI, XIL): Define. 189 (XLI, XIL): Define.
186 (XHASH, XTYPE, XINT, XUINT, make_number, XSET, XPNTR, XUNTAG): Use 190 (XHASH, XTYPE, XINT, XUINT, make_number, XSET, XPNTR, XUNTAG):
187 them. 191 Use them.
188 * emacs.c (gdb_use_struct): Renamed from gdb_use_union. 192 * emacs.c (gdb_use_struct): Rename from gdb_use_union.
189 * .gdbinit: Check gdb_use_struct instead of gdb_use_union. 193 * .gdbinit: Check gdb_use_struct instead of gdb_use_union.
190 * alloc.c (widen_to_Lisp_Object): Removed. 194 * alloc.c (widen_to_Lisp_Object): Remove.
191 (mark_memory): Use XIL instead of widen_to_Lisp_Object. 195 (mark_memory): Use XIL instead of widen_to_Lisp_Object.
192 * frame.c (delete_frame): Remove outdated comment. 196 * frame.c (delete_frame): Remove outdated comment.
193 * w32fns.c (Fw32_register_hot_key): Use XLI instead of checking 197 * w32fns.c (Fw32_register_hot_key): Use XLI instead of checking