aboutsummaryrefslogtreecommitdiffstats
path: root/src/ChangeLog (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Revert incorrect mergeMiles Bader2007-12-291-3/+0
| | | | Revision: emacs@sv.gnu.org/emacs--devo--0--patch-969
* Merge from emacs--rel--22Miles Bader2007-12-281-0/+17
|\ | | | | | | Revision: emacs@sv.gnu.org/emacs--devo--0--patch-966
| * (make_process): Initialize pty_flag to Qnil instead of 0YAMAMOTO Mitsuharu2007-12-241-0/+3
| | | | | | | | as it is not a bit field on Emacs 22 yet.
| * (phys_cursor_in_rect_p): Check if cursor is in fringe area.YAMAMOTO Mitsuharu2007-12-241-0/+4
| |
| * (fill_menubar) [MAC_OSX]: Add workaround for Mac OS X 10.5YAMAMOTO Mitsuharu2007-12-231-0/+5
| | | | | | | | about not changing Help menu title.
| * (syms_of_callint) <command-history>: Add reference to history-length inEli Zaretskii2007-12-221-0/+5
| | | | | | | | the doc string.
| * (w32_wnd_proc) <WM_KEYDOWN>: Cast char to unsigned before passing as wParam.Jason Rumney2007-12-171-0/+5
| |
* | * dbusbind.c (xd_retrieve_arg): Handle DBUS_TYPE_BYTE,Michael Albinus2007-12-221-0/+9
| | | | | | | | | | | | | | | | DBUS_TYPE_INT16, DBUS_TYPE_UINT16, DBUS_TYPE_INT64, DBUS_TYPE_UINT64, DBUS_TYPE_DOUBLE and DBUS_TYPE_SIGNATURE. Return float when DBUS_TYPE_INT32 or DBUS_TYPE_UINT32 do not fit as number. (Fdbus_call_method): Fix docstring.
* | * dbusbind.c (XD_BASIC_DBUS_TYPE, XD_DBUS_TYPE_P, XD_NEXT_VALUE):Michael Albinus2007-12-211-0/+14
| | | | | | | | | | | | | | | | | | | | | | | | | | New macros. (XD_SYMBOL_TO_DBUS_TYPE): Renamed from XD_LISP_SYMBOL_TO_DBUS_TYPE. (XD_OBJECT_TO_DBUS_TYPE): Renamed from XD_LISP_OBJECT_TO_DBUS_TYPE. Simplify. (xd_signature): New function. (xd_append_arg): Compute also signatures. Major rewrite. (xd_retrieve_arg): Make debug messages friendly. (Fdbus_call_method, Fdbus_send_signal): Extend docstring. Check for signatures of arguments.
* | * dbusbind.c (QCdbus_type_byte, QCdbus_type_boolean)Michael Albinus2007-12-191-0/+15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | (QCdbus_type_int16, QCdbus_type_uint16, QCdbus_type_int32) (QCdbus_type_uint32, QCdbus_type_int64, QCdbus_type_uint64) (QCdbus_type_double, QCdbus_type_string, QCdbus_type_object_path) (QCdbus_type_signature, QCdbus_type_array, QCdbus_type_variant) (QCdbus_type_struct, QCdbus_type_dict_entry): New D-Bus type symbols. (XD_LISP_SYMBOL_TO_DBUS_TYPE): New macro. (XD_LISP_OBJECT_TO_DBUS_TYPE): Add compound types. (xd_retrieve_value): Removed. Functionality included in ... (xd_append_arg): New function. (Fdbus_call_method, Fdbus_send_signal): Apply it.
* | *** empty log message ***Martin Rudalics2007-12-191-0/+11
| |
* | * dbusbind.c (top): Include <stdio.h>.Michael Albinus2007-12-161-0/+14
| | | | | | | | | | | | | | | | | | | | | | | | | | (Fdbus_call_method, Fdbus_send_signal): Apply type cast in dbus_message_new_method_call and dbus_message_new_signal. (Fdbus_register_signal): Rename unique_name to uname. Check handler for FUNCTIONP instead of CHECK_SYMBOL. Handle case of non-existing unique name. Fix typos in matching rule. Return an object which is useful in Fdbus_unregister_signal. (Fdbus_unregister_signal): Reimplementation, in order to remove only the corresponding entry. (Vdbus_registered_functions_table): Change the order of entries. Apply these changes in xd_read_message and Fdbus_register_signal.
* | (Finsert_file_contents): Fix overflow check to notAndreas Schwab2007-12-161-0/+5
| | | | | | | | depend on undefined integer overflow.
* | Merge from emacs--rel--22Miles Bader2007-12-161-0/+11
|\ \ | |/ | | | | Revision: emacs@sv.gnu.org/emacs--devo--0--patch-956
| * (w32_read_socket): Use MULTIBYTE_CHAR_KEYSTROKE_EVENT for characters above 127.Jason Rumney2007-12-141-0/+5
| |
| * (w32_wnd_proc, Fw32_reconstruct_hot_key): Range checkJason Rumney2007-12-131-0/+6
| | | | | | | | | | before dereferencing array. (lookup_vk_code): Remove zero comparison.
* | *** empty log message ***Eli Zaretskii2007-12-151-0/+4
| |
* | * dbusbind.c (xd_retrieve_value, xd_retrieve_arg)Michael Albinus2007-12-141-0/+9
| | | | | | | | | | | | | | | | (Fdbus_call_method, Fdbus_send_signal, xd_read_message): Use `unsigned int' instead of `uint'. (xd_read_message, Fdbus_register_signal): Split expressions into multiple lines before operators "&&" and "||", according to the GNU Coding Standards.
* | (Frename_buffer): In interactive spec replaceJuri Linkov2007-12-121-0/+6
| | | | | | | | | | `read-buffer' with `read-string' that uses `buffer-name-history' as history, and the current buffer's name as default.
* | (reset_buffer_local_variables): If permanent_too is 0, alsoStefan Monnier2007-12-101-0/+13
| | | | | | | | | | | | preserve non-built-in buffer-local variables. (Fkill_all_local_variables): Don't re-create&re-set permanent buffer-local variables.
* | (Frename_buffer): Change interactive spec from "s" toJuri Linkov2007-12-091-0/+5
| | | | | | | | Lisp code that uses `read-buffer' with current buffer as default.
* | * dbusbind.c (xd_read_message): Generate an event for everyMichael Albinus2007-12-081-0/+9
| | | | | | | | | | | | | | | | registered handler. There might be several handlers registered for the same signal. (Fdbus_register_signal): Don't overwrite a registration for the same signal. Add a new registration if handlers are different. (Vdbus_registered_functions_table): Rework doc string.
* | * dbusbind.c (Fdbus_get_unique_name, xd_read_message)Michael Albinus2007-12-071-0/+12
| | | | | | | | | | | | | | | | | | | | | | (Fdbus_register_signal): Use DBUS_MAXIMUM_NAME_LENGTH and DBUS_MAXIMUM_MATCH_RULE_LENGTH for string lengths. (Fdbus_call_method, Fdbus_send_signal, Fdbus_register_signal): Unify argument lists. (xd_read_message, Fdbus_register_signal) Reorder and extend event arguments and hash table keys. Use unique name for service. (Fdbus_unregister_signal): Remove checks. (Vdbus_registered_functions_table): Fix doc string.
* | Merge from emacs--rel--22Miles Bader2007-12-061-0/+43
|\ \ | |/ | | | | Revision: emacs@sv.gnu.org/emacs--devo--0--patch-943
| * (make_process): Initialize pty_flag to 0.Richard M. Stallman2007-12-031-0/+4
| |
| * (xbm_load) [WINDOWSNT]: Shuffle the bits of directly specified XBMs.Jason Rumney2007-12-021-0/+5
| |
| * (syms_of_xdisp) <scroll-conservatively>: Doc fix.Richard M. Stallman2007-12-011-0/+4
| |
| * (emacs_close) [MAC_OSX && HAVE_CARBON]:YAMAMOTO Mitsuharu2007-11-301-0/+11
| | | | | | | | Use mac_try_close_socket.
| * Petr Salinger <Petr.Salinger at seznam.cz>: New file.Glenn Morris2007-11-281-0/+4
| |
| * (unrelocate): New argument BASE. Use it instead ofYAMAMOTO Mitsuharu2007-11-271-0/+9
| | | | | | | | | | | | | | | | reloc_base. (copy_dysymtab): Compute relocation base here. (rebase_reloc_address) [__ppc64__]: New function. (copy_dysymtab) [__ppc64__]: Use it if relocation base needs to be changed.
| * (sys_spawnve): Quote args with wildcards.Jason Rumney2007-11-261-0/+4
| |
| * (list_processes_1): Fix indentation level of theAndreas Schwab2007-11-261-0/+5
| | | | | | | | command column.
| * (copy_data_segment): Also copy __gcc_except_tab and __objc_* sections.YAMAMOTO Mitsuharu2007-11-241-0/+6
| | | | | | | | (unrelocate) [_LP64]: Set relocation base to address of data segment.
| * (Fformat): Handle %c specially since it requires theAndreas Schwab2007-11-231-0/+5
| | | | | | | | argument to be of type int.
| * (update_frame_tool_bar): Don't call x-gtk-map-stock ifJan Djärv2007-11-221-0/+5
| | | | | | | | file for image is nil.
* | * dbusbind.c (xd_read_message): Return value is a Lisp_Object.Michael Albinus2007-12-051-0/+8
| | | | | | | | | | | | | | Move check for Vdbus_registered_functions_table to xd_read_queued_messages. (xd_read_queued_messages): Protect xd_read_message calls by internal_condition_case_1.
* | * dbusbind.c (QCdbus_system_bus, QCdbus_session_bus): Renamed fromMichael Albinus2007-12-041-0/+11
| | | | | | | | | | | | | | | | | | | | Qdbus_system_bus and Qdbus_session_bus, respectively. (Vdbus_intern_symbols): Removed. (Vdbus_registered_functions_table): New hash table. (XD_SYMBOL_INTERN_SYMBOL): Removed. (xd_read_message, Fdbus_register_signal, Fdbus_unregister_signal): Rewritten in order to manage registered functions by hash table Vdbus_registered_functions_table.
* | Update URL to Window Manager Specification in comment.Jan Djärv2007-12-031-0/+4
| |
* | * config.in (HAVE_DBUS): Add.Michael Albinus2007-12-021-0/+23
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Makefile.in: (HAVE_DBUS): Add D-Bus definitions if defined. (ALL_CFLAGS): Add ${DBUS_CFLAGS}. (obj): Add $(DBUS_OBJ). (LIBES): Add $(DBUS_LIBS). (dbusbind.o): New target. * dbusbind.c: New file. * emacs.c (main): Call syms_of_dbusbind when HAVE_DBUS is defined. * keyboard.c: All D-Bus related code is wrapped by "#ifdef HAVE_DBUS". (Qdbus_event) New Lisp symbol. (kbd_buffer_get_event, make_lispy_event): Handle DBUS_EVENT. (gobble_input): Call xd_read_queued_messages, reading D-Bus messages. (keys_of_keyboard ): Define dbus-event. * termhooks.h (event_kind): Add DBUS_EVENT when HAVE_DBUS is defined.
* | *** empty log message ***Jason Rumney2007-12-011-0/+2
| |
* | (syms_of_search) <inhibit-changing-match-data>: Doc fix.Richard M. Stallman2007-12-011-0/+4
| |
* | (vga_stdcolor_name): Remove.Jason Rumney2007-11-301-0/+10
| |
* | Leave HAVE_WINDOW_SYSTEM defined.Jason Rumney2007-11-291-0/+7
| | | | | | | | | | | | (w32_face_attributes): Use Vtty_defined_color_alist to determine if the terminal colors are initialized. (unspecified_fg, unspecified_bg): Remove unused declarations.
* | (apply_modifiers): Fix typo.Andreas Schwab2007-11-291-0/+4
| |
* | (Fcurrent_local_map): Doc fix.Richard M. Stallman2007-11-291-0/+4
| |
* | Petr Salinger <Petr.Salinger at seznam.cz>: New file.Glenn Morris2007-11-281-0/+4
| |
* | (Fget_buffer_create, Fmake_indirect_buffer): Don't cast redundantly.Stefan Monnier2007-11-281-0/+3
| |
* | (KEY_TO_CHAR): New macro.Stefan Monnier2007-11-281-0/+8
| | | | | | | | | | | | | | (parse_modifiers, apply_modifiers): Accept integer arguments. (read_key_sequence): Use them to unify the "shift->unshift" mapping for chars and symbol keys. After doing such remapping, apply function-key-map again.
* | * progmodes/cperl-mode.el (compilation-error-regexp-alist): PacifyDan Nicolaescu2007-11-271-0/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | byte compiler. (cperl-mode): Use with-no-warnings for setting vc-header-alist. * progmodes/idlwave.el (idlwave-shell-get-path-info) (idlwave-shell-temp-file, idlwave-shell-is-running) (widget-value, comint-dynamic-complete-filename, Info-goto-node): * progmodes/idlw-help.el (idlwave-prepare-structure-tag-completion) (idlwave-all-method-classes, idlwave-all-method-keyword-classes) (idlwave-beginning-of-statement, idlwave-best-rinfo-assoc) (idlwave-class-found-in, idlwave-class-or-superclass-with-tag) (idlwave-completing-read, idlwave-current-routine) (idlwave-downcase-safe, idlwave-entry-find-keyword) (idlwave-expand-keyword, idlwave-find-class-definition) (idlwave-find-inherited-class, idlwave-find-struct-tag) (idlwave-get-buffer-visiting, idlwave-in-quote) (idlwave-make-full-name, idlwave-members-only) (idlwave-popup-select, idlwave-routine-source-file) (idlwave-routines, idlwave-sintern-class) (idlwave-sintern-keyword, idlwave-sintern-method) (idlwave-sintern-routine-or-method) (idlwave-substitute-link-target, idlwave-sys-dir) (idlwave-this-word, idlwave-what-module-find-class) (idlwave-where): * progmodes/idlw-complete-structtag.el (idlwave-shell-buffer): * mail/uce.el (rmail-msg-is-pruned) (rmail-maybe-set-message-counters, rmail-msgbeg, rmail-msgend) (rmail-toggle-header): * mail/sendmail.el (dired-view-file, dired-get-filename): * mail/rmailkwd.el (rmail-maybe-set-message-counters) (rmail-display-labels, rmail-msgbeg) (rmail-set-message-deleted-p, rmail-message-labels-p) (rmail-show-message, mail-comma-list-regexp) (mail-parse-comma-list): * mail/rmail.el (rmail-spam-filter, rmail-summary-goto-msg) (rmail-summary-mark-undeleted, rmail-summary-mark-deleted) (rfc822-addresses, mail-abbrev-make-syntax-table) (mail-sendmail-delimit-header, mail-header-end): * mail/hashcash.el (message-narrow-to-headers-or-head) (message-fetch-field, message-goto-eoh) (message-narrow-to-headers): * vc.el (view-mode-exit): Declare as functions. * mail/vms-pmail.el: * vmsproc.el: * vms-patch.el: Don't byte compile these files, they don't work. * Makefile.in (SOME_MACHINE_LISP): Remove VMS files, they are not compiled anymore.
* | *** empty log message ***Andreas Schwab2007-11-261-0/+5
| |