aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJuanma Barranquero2012-01-03 03:14:40 +0100
committerJuanma Barranquero2012-01-03 03:14:40 +0100
commitb81d40f0fe43db0c6a4d71e1aaea6b2c65b27395 (patch)
tree1496e12a16747442e95696101a84cdb235c4a24b /src
parent30710442b4725af9f45e9a9b6013f4a3f4e4706b (diff)
downloademacs-b81d40f0fe43db0c6a4d71e1aaea6b2c65b27395.tar.gz
emacs-b81d40f0fe43db0c6a4d71e1aaea6b2c65b27395.zip
Fix typos.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog12
-rw-r--r--src/lread.c2
2 files changed, 7 insertions, 7 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 829895d1b72..31d6ecaca43 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -41,8 +41,8 @@
41 41
422011-12-21 Jan Djärv <jan.h.d@swipnet.se> 422011-12-21 Jan Djärv <jan.h.d@swipnet.se>
43 43
44 * nsterm.m (x_free_frame_resources): Release 44 * nsterm.m (x_free_frame_resources):
45 f->output_data.ns->miniimage 45 Release f->output_data.ns->miniimage.
46 (ns_index_color): Fix indentation. Do not retain 46 (ns_index_color): Fix indentation. Do not retain
47 color_table->colors[i]. 47 color_table->colors[i].
48 48
@@ -94,10 +94,10 @@
94 Fns_store_cut_buffer_internal. 94 Fns_store_cut_buffer_internal.
95 (ns_get_foreign_selection, Fx_own_selection_internal) 95 (ns_get_foreign_selection, Fx_own_selection_internal)
96 (Fx_disown_selection_internal, Fx_selection_exists_p) 96 (Fx_disown_selection_internal, Fx_selection_exists_p)
97 (Fns_get_selection_internal, Fns_store_selection_internal): Use 97 (Fns_get_selection_internal, Fns_store_selection_internal):
98 ns_symbol_to_pb and check if return value is nil. 98 Use ns_symbol_to_pb and check if return value is nil.
99 (syms_of_nsselect): Remove ifdef CUT_BUFFER_SUPPORT. Remove 99 (syms_of_nsselect): Remove ifdef CUT_BUFFER_SUPPORT. Remove defsubr
100 defsubr Sns_rotate_cut_buffers_internal. Sns_get_cut_buffer_internal 100 Sns_rotate_cut_buffers_internal. Sns_get_cut_buffer_internal
101 renamed to Sns_get_selection_internal, Sns_store_cut_buffer_internal 101 renamed to Sns_get_selection_internal, Sns_store_cut_buffer_internal
102 renamed to Sns_store_selection_internal. 102 renamed to Sns_store_selection_internal.
103 (ns_handle_selection_request): Move code to Fx_own_selection_internal 103 (ns_handle_selection_request): Move code to Fx_own_selection_internal
diff --git a/src/lread.c b/src/lread.c
index 7c0b0475786..8e6b6f65e25 100644
--- a/src/lread.c
+++ b/src/lread.c
@@ -3113,7 +3113,7 @@ read1 (register Lisp_Object readcharfun, int *pch, int first_in_list)
3113 if (uninterned_symbol && ! NILP (Vpurify_flag)) 3113 if (uninterned_symbol && ! NILP (Vpurify_flag))
3114 name = make_pure_string (read_buffer, nchars, nbytes, multibyte); 3114 name = make_pure_string (read_buffer, nchars, nbytes, multibyte);
3115 else 3115 else
3116 name = make_specified_string (read_buffer, nchars, nbytes,multibyte); 3116 name = make_specified_string (read_buffer, nchars, nbytes, multibyte);
3117 result = (uninterned_symbol ? Fmake_symbol (name) 3117 result = (uninterned_symbol ? Fmake_symbol (name)
3118 : Fintern (name, Qnil)); 3118 : Fintern (name, Qnil));
3119 3119