summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* info/eintr-3: Updated Info file to Third Edition forRobert J. Chassell2006-10-311-0/+2743
| | | | `Introduction to Programming in Emacs Lisp'
* info/eintr-2: Updated Info file to Third Edition forRobert J. Chassell2006-10-311-0/+7502
| | | | `Introduction to Programming in Emacs Lisp'
* info/eintr-1: Updated Info file to Third Edition forRobert J. Chassell2006-10-311-0/+7313
| | | | `Introduction to Programming in Emacs Lisp'
* info/eintr: Updated Info file to Third Edition forRobert J. Chassell2006-10-311-0/+351
| | | | `Introduction to Programming in Emacs Lisp'
* * emacs-lisp-intro.texi: Revised text for kill-region,Robert J. Chassell2006-10-311-0/+10
| | | | | | | | | copy-region-as-kill, kill-append, kill-new, forward-sentence, forward-paragraph, find-file, current-kill, yank, and yank-pop. Removed INSTALL MANIFEST from the directory since those files are now irrelevant. Updated Info file in ../info. Changed numbering so is now Revised Third Edition and this instance's edition-number is 3.00. Did not update ISBN number.
* Removed INSTALL MANIFEST since those files are now irrelevant.Robert J. Chassell2006-10-314-372/+64
|
* [WINDOWSNT]: Include <malloc.h> and <stdlib.h>.Juanma Barranquero2006-10-312-8/+19
| | | | (close_winsock): Declare as __cdecl.
* [!WINDOWSNT]: Include <fcntl.h> if available.Juanma Barranquero2006-10-312-0/+17
| | | | | (set_tcp_socket): Prefer O_NONBLOCK, then O_NDELAY, then FIONBIO to set the socket in non-blocking mode.
* *** empty log message ***Kim F. Storm2006-10-312-11/+10
|
* Added an entryRamprasad B2006-10-311-0/+5
|
* Installed describe-face sample textRamprasad B2006-10-311-0/+14
|
* Fixes to emacsclient.c for GNU/Linux.Juanma Barranquero2006-10-312-2/+15
| | | | | | | [!WINDOWSNT] <top level>: Include <netinet/in.h> and <sys/ioctl.h>. (INVALID_SOCKET): Define. (initialize_sockets): Put #endif at the right place. (set_local_socket): Use progname, not argv[0].
* (create_apple_event_from_event_ref)YAMAMOTO Mitsuharu2006-10-312-6/+62
| | | | | | (create_apple_event_from_drag_ref, xrm_merge_string_database) (xrm_get_resource, xrm_get_preference_database): Add const qualifier to arguments in externs.
* (mac_create_bitmap_from_bitmap_data): Make variableYAMAMOTO Mitsuharu2006-10-311-93/+108
| | | | | | | | | | | | | | | | | | | | | | | | | `swap_nibbles' static const. (atsu_get_text_layout_with_text_ptr): Make variables `lengths', `tags', `sizes', `values' static const. (mac_draw_string_common): Make variables `context' static. Make variables `tags', `sizes', and `values' static const. (pcm_get_status, x_detect_focus_change, x_scroll_bar_handle_click) (xlfdpat_create, xlfdpat_block_match_1, xlfdpat_match) (mac_to_x_fontname, parse_x_font_name, add_mac_font_name) (mac_do_list_fonts, is_fully_specified_xlfd, do_grow_window) (mac_store_event_ref_as_apple_event, mac_make_rdb): Add const qualifier to arguments. (xlfd_scalable_fields, keycode_to_xkeysym_table) (fn_keycode_to_keycode_table): Make static const. (mac_load_query_font): Make variables `tags', `sizes', `values', `types', and `selectors' static const. (mac_handle_command_event, mac_handle_window_event): Make variables `names' and `types' static const. (init_command_handler, install_window_handler): Make variables `specs*' static const. (mac_handle_font_event, mac_handle_text_input_event) (mac_store_service_event): Make variables `names' and `types' const. Make variables `names_*' and `types_*' static const.
* (init_service_handler): Make variable `specs' staticYAMAMOTO Mitsuharu2006-10-311-4/+5
| | | | const.
* (install_menu_quit_handler): Make variable `typesList'YAMAMOTO Mitsuharu2006-10-311-3/+4
| | | | | static const. (name_is_separator): Add const qualifier to arguments.
* (mac_color_map): Make static const.YAMAMOTO Mitsuharu2006-10-311-2/+2
| | | | (mac_color_map_lookup): Add const qualifier to arguments.
* (create_apple_event_from_event_ref)YAMAMOTO Mitsuharu2006-10-311-16/+16
| | | | | | | | | (create_apple_event_from_drag_ref, skip_white_space, parse_comment) (parse_include_file, parse_binding, parse_component) (parse_resource_name, parse_value, parse_resource_line) (xrm_merge_string_database, xrm_get_resource) (xrm_get_preference_database): Add const qualifier to arguments. [MAC_OSX] (sys_select): Make variable `context' static const.
* [MAC_OS] (image_load_qt_1, xpm_scan, xpm_make_color_table_v)YAMAMOTO Mitsuharu2006-10-311-30/+29
| | | | | | | (xpm_put_color_table_v, xpm_get_color_table_v, xpm_make_color_table_h) (xpm_put_color_table_h, xpm_get_color_table_h, xpm_str_to_color_key) (xpm_load_image): Add const qualifier to arguments. [MAC_OS] (xpm_color_key_strings): Make static const.
* (xic_create_xfontset): Fix previous change.Kenichi Handa2006-10-312-18/+30
|
* Add arch taglineMiles Bader2006-10-311-0/+1
|
* *** empty log message ***Juanma Barranquero2006-10-312-195/+244
|
* (ada-prj-new): Change maintainer, apply whitespace-cleanup, checkdoc. MinorJuanma Barranquero2006-10-311-28/+34
| | | | | improvements to many doc strings and comments. (ada-prj-display-page): Change buffer name to more accurately reflect function.
* Change maintainer, apply whitespace-cleanup, checkdoc.Juanma Barranquero2006-10-311-4/+3
| | | | (ada-func-or-proc-name): Add doc string.
* (ada-compile-current): Don't add newlines to commands.Juanma Barranquero2006-10-311-255/+234
|
* Add support for TCP sockets.Juanma Barranquero2006-10-311-155/+400
| | | | | | | | | | | | | | | | | | | | | | | | | | (SEND_STRING, SEND_QUOTED, HSOCKET, CLOSE_SOCKET, IOCTL, INITIALIZE): New macros. (IOCTL_BOOL_ARG): New typedef. (server_file): New global variable. (longopts): New option --server-file. (decode_options): Process new option --server-file and environment variable EMACS_SERVER_FILE. (print_help_and_exit): Document new option. (fail): If no connection available and no alternate editor, suggest using options to make them explicit. (AUTH_KEY_LENGTH, SEND_BUFFER_SIZE): New constants. (send_buffer, sblen): New variables. (send_to_emacs): New function to buffer output and send it with send(). (quote_file_name): Use SEND_STRING. (close_winsock, initialize_sockets): New functions to load and unload Winsock. (get_server_config, set_tcp_socket): New functions to create and set up TCP sockets. (set_local_socket): New function to create and set up Unix socket (code moved from previous implementation). (set_socket): New function to chose between TCP and Unix sockets. (main): Use SEND_STRING and SEND_QUOTED. Most code moved to set_local_socket. Use set_socket. Get answers from server.el with recv(), not file stream functions.
* (ALL): Add emacsclient.Juanma Barranquero2006-10-311-2/+16
| | | | | | (ECLIENT_CFLAGS, ECLIENTOBJS): New macros. (emacsclient, $(BLD)/emacsclient.exe): New targets. (install): Install emacsclient.
* Add support for TCP sockets.Juanma Barranquero2006-10-302-68/+154
| | | | | | | | | | | | (server-use-tcp, server-host, server-auth-dir): New options. (server-auth-key): New variable. (server-ensure-safe-dir): Create nonexistent parent dirs. Ignore Unix-style file modes on Windows. (server-start): Crete a TCP or Unix socket according to the value of `server-use-tcp'. For TCP sockets, create the id/auth file in `server-auth-dir' directory. (server-process-filter): Delete process if authentication fails (which never happens for Unix sockets).
* * Makefile.in (lwlib-utils.o): Use CPPFLAGS.Chong Yidong2006-10-302-1/+5
|
* Tweak last fix.Chong Yidong2006-10-301-1/+1
|
* * s/openbsd.h (LD_SWITCH_SYSTEM): Add /usr/pkg/lib andChong Yidong2006-10-302-1/+6
| | | | /usr/pkg/lib to library search path.
* (add-to-list): Don't continue checking if a match hasDavid Kastrup2006-10-302-5/+10
| | | | been found.
* * emacs-lisp-intro.texi: Many changes since it turned out thatRobert J. Chassell2006-10-302-2335/+3341
| | | | | | | | many `simple' functions were rewritten. Changes to the text regarding zap-to-char, mark-whole-buffer, append-to-buffer, copy-to-buffer, beginning-of-buffer, what-line, and possibly others. (I have not reviewed all yet.) This instance does build for Info and TeX.
* * tutorial.el: Move defvars to avoid bytecomp warnings.Chong Yidong2006-10-301-0/+8
| | | | | | | (tutorial--find-changed-keys): Check if viper-current-state is bound before using it. (help-with-tutorial): Check if viper-tutorial is defined before using it.
* Fix last fix.Chong Yidong2006-10-301-155/+155
|
* * tutorial.el: Move defvars to avoid bytecomp warnings.Chong Yidong2006-10-301-175/+173
| | | | | | | (tutorial--find-changed-keys): Check if viper-current-state is bound before using it. (help-with-tutorial): Check if viper-tutorial is defined before using it.
* * help-fns.el (help-with-tutorial): Moved to tutorial.el.Chong Yidong2006-10-303-66/+1019
| | | | | | | | | | | * tutorial.el: New file. (help-with-tutorial): Moved here from help-fns.el. Added help for rebound keys. Fixed resume of tutorial. (tutorial--describe-nonstandard-key, tutorial--sort-keys) (tutorial--find-changed-keys, tutorial--display-changes) (tutorial--saved-dir, tutorial--saved-file) (tutorial--save-tutorial): New functions to support the changes in help-with-tutorial.
* * make-dist: Add makefile.w32-in to the man, lispref and lispintroChong Yidong2006-10-302-0/+8
| | | | directories.
* * makefile.w32-in: revert last change.Chong Yidong2006-10-302-4/+2
|
* * makefile.w32-in: Revert last change.Chong Yidong2006-10-302-4/+2
|
* Merge from gnus--rel--5.10Miles Bader2006-10-302-20/+131
| | | | | | | | | | | | | | | | | | | | Patches applied: * gnus--rel--5.10 (patch 160) - Update from CVS 2006-10-29 Reiner Steib <Reiner.Steib@gmx.de> * lisp/gnus/mm-util.el (mm-codepage-iso-8859-list, mm-codepage-ibm-list): New variables. (mm-setup-codepage-iso-8859, mm-setup-codepage-ibm): New functions. (mm-charset-synonym-alist): Move some entries to mm-codepage-iso-8859-list. (mm-charset-synonym-alist, mm-charset-override-alist): Add iso-8859-8/windows-1255 and iso-8859-9/windows-1254. Revision: emacs@sv.gnu.org/emacs--devo--0--patch-489
* (revert-buffer): If a unibyte buffer is being revertedKenichi Handa2006-10-302-0/+15
| | | | | with a coding system for multibyte, set buffer multibyte before calling insert-file-contents.
* (server-select-display): Use a dummy buffer to detect whenStefan Monnier2006-10-302-18/+41
| | | | | | the frame is later used. (server-select-display): New function. (server-process-filter): Use it to detect unused temp frames.
* (WinMain): Process all recognized arguments, not just the first one.Juanma Barranquero2006-10-292-14/+21
| | | | Remove unused variable sec_desc.
* * configure: Regenerate using autoconf 2.59.Chong Yidong2006-10-292-24/+23
|
* * ralloc.c (relinquish): Use a long for excess space counter toChong Yidong2006-10-292-1/+6
| | | | handle 64-bit case correctly.
* * configure.in: Enable x86-64 OpenBSD compilation.Chong Yidong2006-10-292-0/+5
|
* * m/amdx86-64.h: Add defines for OpenBSD x86-64.Chong Yidong2006-10-292-1/+12
|
* * Makefile.in: Use relative paths to avoid advertising filesystemChong Yidong2006-10-293-4/+11
| | | | | | contents during compilation. * makefile.w32-in: Likewise.
* * makefile.w32-in: Use relative paths to avoid advertising filesystemChong Yidong2006-10-292-2/+4
| | | | contents during compilation.