diff options
| author | Dan Nicolaescu | 2009-11-06 06:50:52 +0000 |
|---|---|---|
| committer | Dan Nicolaescu | 2009-11-06 06:50:52 +0000 |
| commit | d67b4f80dbe514d6e351e7d89c78921c85e7dbe7 (patch) | |
| tree | da83a5dc49e499e330365feaa8123709fdf0cc88 /src/editfns.c | |
| parent | 495bd5ca19cf79a9e91b77bf2e2ea37b8be3ef1f (diff) | |
| download | emacs-d67b4f80dbe514d6e351e7d89c78921c85e7dbe7.tar.gz emacs-d67b4f80dbe514d6e351e7d89c78921c85e7dbe7.zip | |
* xterm.c (syms_of_xterm):
* xselect.c (syms_of_xselect):
* xmenu.c (syms_of_xmenu):
* xfns.c (syms_of_xfns):
* xfaces.c (syms_of_xfaces):
* xdisp.c (syms_of_xdisp):
* window.c (syms_of_window):
* w32fns.c (syms_of_w32fns):
* undo.c (syms_of_undo):
* textprop.c (syms_of_textprop):
* terminal.c (syms_of_terminal):
* syntax.c (syms_of_syntax):
* sound.c (syms_of_sound):
* search.c (syms_of_search):
* print.c (syms_of_print):
* minibuf.c (syms_of_minibuf):
* macros.c (syms_of_macros):
* keymap.c (syms_of_keymap, initial_define_key)
(initial_define_lispy_key):
* keyboard.c (syms_of_keyboard):
* insdel.c (syms_of_insdel):
* image.c (syms_of_image):
* fringe.c (syms_of_fringe):
* frame.c (syms_of_frame):
* fontset.c (syms_of_fontset):
* fns.c (syms_of_fns):
* fns.c (syms_of_fns):
* fileio.c (syms_of_fileio):
* fileio.c (syms_of_fileio):
* eval.c (syms_of_eval):
* doc.c (syms_of_doc):
* dispnew.c (syms_of_display):
* dired.c (syms_of_dired):
* dbusbind.c (syms_of_dbusbind):
* data.c (syms_of_data):
* composite.c (syms_of_composite):
* coding.c (syms_of_coding):
* cmds.c (syms_of_cmds):
* charset.c (define_charset_internal, syms_of_character):
* ccl.c (syms_of_ccl):
* category.c (syms_of_category, init_category_once):
* casetab.c (syms_of_casetab):
* casefiddle.c (syms_of_casefiddle):
* callint.c (syms_of_callint):
* bytecode.c (syms_of_bytecode):
* buffer.c (keys_of_buffer, syms_of_buffer):
* alloc.c (syms_of_alloc):
* process.c (syms_of_process, init_process):
* lread.c (syms_of_lread, init_obarray):
* font.c (build_style_table):
* emacs.c (syms_of_emacs, main): Replace calls to intern with
intern_c_string, calls to make_pure_string with
make_pure_c_string. Use pure_cons instead of Fcons.
* process.c (socket_options): Make it const.
(set_socket_option, init_process): Use a const pointer.
* lread.c (intern_c_string): New function.
(defvar_kboard, defvar_lisp, defvar_lisp_nopro, defvar_bool)
(defvar_int): Uset it. Make the name const char*.
* font.c (struct table_entry): Remove unused member. Make NAMES
constant.
(weight_table, slant_table, width_table): Make constant.
* emacs.c (struct standard_args): Make name and longname constant.
Diffstat (limited to 'src/editfns.c')
| -rw-r--r-- | src/editfns.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/editfns.c b/src/editfns.c index 806e75dc0f1..8cf182dff0f 100644 --- a/src/editfns.c +++ b/src/editfns.c | |||
| @@ -4626,7 +4626,7 @@ syms_of_editfns () | |||
| 4626 | initial_tz = 0; | 4626 | initial_tz = 0; |
| 4627 | 4627 | ||
| 4628 | Qbuffer_access_fontify_functions | 4628 | Qbuffer_access_fontify_functions |
| 4629 | = intern ("buffer-access-fontify-functions"); | 4629 | = intern_c_string ("buffer-access-fontify-functions"); |
| 4630 | staticpro (&Qbuffer_access_fontify_functions); | 4630 | staticpro (&Qbuffer_access_fontify_functions); |
| 4631 | 4631 | ||
| 4632 | DEFVAR_LISP ("inhibit-field-text-motion", &Vinhibit_field_text_motion, | 4632 | DEFVAR_LISP ("inhibit-field-text-motion", &Vinhibit_field_text_motion, |
| @@ -4647,7 +4647,7 @@ of the buffer being accessed. */); | |||
| 4647 | /* Do this here, because init_buffer_once is too early--it won't work. */ | 4647 | /* Do this here, because init_buffer_once is too early--it won't work. */ |
| 4648 | Fset_buffer (Vprin1_to_string_buffer); | 4648 | Fset_buffer (Vprin1_to_string_buffer); |
| 4649 | /* Make sure buffer-access-fontify-functions is nil in this buffer. */ | 4649 | /* Make sure buffer-access-fontify-functions is nil in this buffer. */ |
| 4650 | Fset (Fmake_local_variable (intern ("buffer-access-fontify-functions")), | 4650 | Fset (Fmake_local_variable (intern_c_string ("buffer-access-fontify-functions")), |
| 4651 | Qnil); | 4651 | Qnil); |
| 4652 | Fset_buffer (obuf); | 4652 | Fset_buffer (obuf); |
| 4653 | } | 4653 | } |
| @@ -4690,9 +4690,9 @@ functions if all the text being accessed has this property. */); | |||
| 4690 | defsubr (&Sregion_end); | 4690 | defsubr (&Sregion_end); |
| 4691 | 4691 | ||
| 4692 | staticpro (&Qfield); | 4692 | staticpro (&Qfield); |
| 4693 | Qfield = intern ("field"); | 4693 | Qfield = intern_c_string ("field"); |
| 4694 | staticpro (&Qboundary); | 4694 | staticpro (&Qboundary); |
| 4695 | Qboundary = intern ("boundary"); | 4695 | Qboundary = intern_c_string ("boundary"); |
| 4696 | defsubr (&Sfield_beginning); | 4696 | defsubr (&Sfield_beginning); |
| 4697 | defsubr (&Sfield_end); | 4697 | defsubr (&Sfield_end); |
| 4698 | defsubr (&Sfield_string); | 4698 | defsubr (&Sfield_string); |