]> git.eshelyaron.com Git - emacs.git/log
emacs.git
14 years ago(c-version): Bump to 5.31.8.
Alan Mackenzie [Wed, 18 Nov 2009 07:07:32 +0000 (07:07 +0000)]
(c-version): Bump to 5.31.8.

14 years ago*** empty log message ***
Alan Mackenzie [Wed, 18 Nov 2009 07:06:43 +0000 (07:06 +0000)]
*** empty log message ***

14 years ago(rfc2047-decode-region): Don't quote decoded words containing tspecial
Katsumi Yamaoka [Tue, 17 Nov 2009 22:10:40 +0000 (22:10 +0000)]
(rfc2047-decode-region): Don't quote decoded words containing tspecial
 characters if they have been already quoted.  -- Synch with Gnus trunk.

14 years ago* lisp.h: Remove declaration of Ffont_get_system_font.
Andreas Schwab [Tue, 17 Nov 2009 21:57:48 +0000 (21:57 +0000)]
* lisp.h: Remove declaration of Ffont_get_system_font.
* xfns.c: Move include of "xsettings.h".
* xsettings.h: Use EXFUN to declare Ffont_get_system_font.

14 years agoxsettings.c didn't check font-use-system-font, fix that.
Jan Djärv [Tue, 17 Nov 2009 20:17:46 +0000 (20:17 +0000)]
xsettings.c didn't check font-use-system-font, fix that.
* xsettings.c (something_changedCB, Ffont_get_system_font): Check
use_system_font.
(syms_of_xsettings): DEFVAR font-use-system-font.

* font-setting.el (font-use-system-font): Moved ...

* cus-start.el (all): ... to here.

14 years ago(x_default_font_parameter): Remove dead assignment.
Andreas Schwab [Tue, 17 Nov 2009 19:13:14 +0000 (19:13 +0000)]
(x_default_font_parameter): Remove dead assignment.

14 years ago(Fbyteorder, init_font, Ffont_get_system_font): Declare.
Andreas Schwab [Tue, 17 Nov 2009 19:11:53 +0000 (19:11 +0000)]
(Fbyteorder, init_font, Ffont_get_system_font): Declare.

14 years ago* net/tramp-gvfs.el (tramp-gvfs-handle-write-region): Set file
Michael Albinus [Tue, 17 Nov 2009 14:58:08 +0000 (14:58 +0000)]
* net/tramp-gvfs.el (tramp-gvfs-handle-write-region): Set file
modification time.

14 years ago* xftfont.c (xftfont_fix_match): Older versions of fontconfig does
Jan Djärv [Tue, 17 Nov 2009 13:47:29 +0000 (13:47 +0000)]
* xftfont.c (xftfont_fix_match): Older versions of fontconfig does
not have FC_LCD_*.  #define them if not there.

14 years ago* net/tramp.el (tramp-advice-file-expand-wildcards): Simplify.
Michael Albinus [Tue, 17 Nov 2009 10:38:44 +0000 (10:38 +0000)]
* net/tramp.el (tramp-advice-file-expand-wildcards): Simplify.
Don't set `ad-return-value' if `ad-do-it' doesn't.

14 years ago#ifdef on FC_LCD_FILTER.
Jan Djärv [Tue, 17 Nov 2009 09:53:45 +0000 (09:53 +0000)]
#ifdef on FC_LCD_FILTER.

* xftfont.c (xftfont_fix_match): Older versions of fontconfig does
not have FC_LCD_FILTER.  #ifdef it.

* xsettings.c (parse_xft_settings, apply_xft_settings): Ditto

* xftfont.c (xftfont_fix_match): New function.
(xftfont_open): Call XftDefaultSubstitute before XftFontMatch.
Call xftfont_fix_match after XftFontMatch.

14 years agomenu-bar.el(menu-bar-options-save): Add font-use-system-font.
Jan Djärv [Tue, 17 Nov 2009 09:19:12 +0000 (09:19 +0000)]
menu-bar.el(menu-bar-options-save): Add font-use-system-font.

14 years agoAdd font-setting.el to DOC.
Jan Djärv [Tue, 17 Nov 2009 09:13:36 +0000 (09:13 +0000)]
Add font-setting.el to DOC.

14 years agoHandle system default font and changing font parameters.
Jan Djärv [Tue, 17 Nov 2009 08:21:23 +0000 (08:21 +0000)]
Handle system default font and changing font parameters.

* xterm.h (struct x_display_info): Add atoms and Window for xsettings.

* xterm.c (handle_one_xevent): Call xft_settings_event for
ClientMessage, PropertyNotify and DestroyNotify.
(x_term_init): If we have XFT, get DPI from Xft.dpi.
Call xsettings_initialize.

* xftfont.c (xftfont_fix_match): New function.
(xftfont_open): Call XftDefaultSubstitute before XftFontMatch.
Call xftfont_fix_match after XftFontMatch.

* xfont.c (xfont_driver): Initialize all members.

* xfns.c (x_default_font_parameter): Try font from Ffont_get_system_font.
Do not get font from x_default_parameter if we got one from
Ffont_get_system_font.
(Fx_select_font): Get the defaut font name from :name of FRAME_FONT (f).

* w32font.c (w32font_driver): Initialize all members.

* termhooks.h (enum event_kind): CONFIG_CHANGED_EVENT is new.

* lisp.h: Declare syms_of_xsettings.

* keyboard.c (kbd_buffer_get_event, make_lispy_event): Handle
CONFIG_CHANGED_EVENT.

* ftfont.c (ftfont_filter_properties): New function.

* frame.c (x_set_font): Remove unused variable lval.

* font.h (struct font_driver): filter_properties is new.

* font.c (font_put_extra): Don't return if val is nil, it means
boolean option is off.
(font_parse_fcname): Collect all extra properties in extra_props
and call filter_properties for all drivers with extra_props and
font as parameter.
(font_open_entity): Do not use cache, it does not pick up new fontconfig
settings like hinting.
(font_load_for_lface): If spec had a name in it, store it in entity.

* emacs.c (main): Call syms_of_xsettings

* config.in: HAVE_GCONF is new.

* Makefile.in (GCONF_CFLAGS, GCONF_LIBS): New variables for HAVE_GCONF.
xsettings.o is new.

* menu-bar.el: Put "Use system font" in Option-menu.

* loadup.el: If feature system-font-setting or font-render-setting is
there, load font-setting.

* Makefile.in (ELCFILES): font-settings.el is new.
* font-setting.el: New file.

* NEWS: Mention dynamic font changes (font-use-system-font).

* configure.in: New option: --with(out)-gconf.
Set HAVE_GCONF if we find gconf.

14 years agoAdd 2009 to copyright years.
Glenn Morris [Tue, 17 Nov 2009 04:44:58 +0000 (04:44 +0000)]
Add 2009 to copyright years.

14 years ago(newsticker--treeview-list-update-faces):
Glenn Morris [Tue, 17 Nov 2009 04:41:15 +0000 (04:41 +0000)]
(newsticker--treeview-list-update-faces):
Preserve point in the list buffer.  (Bug#4939)
Use point-at-eol.
(newsticker--treeview-list-update-highlight)
(newsticker--treeview-tree-update-highlight): Use point-at-bol/eol.

14 years ago(vc-svn-print-log): Fix typo in previous.
Glenn Morris [Tue, 17 Nov 2009 04:35:33 +0000 (04:35 +0000)]
(vc-svn-print-log): Fix typo in previous.

14 years ago(INFO_FILES): Add semantic.
Glenn Morris [Tue, 17 Nov 2009 04:34:45 +0000 (04:34 +0000)]
(INFO_FILES): Add semantic.

14 years ago(x_produce_glyphs): Consider face-remapping when falling
Kenichi Handa [Tue, 17 Nov 2009 04:17:19 +0000 (04:17 +0000)]
(x_produce_glyphs): Consider face-remapping when falling
back to the default font in case that no suitable font is found.

14 years ago(Fx_popup_menu) [HAVE_NS]: Use generic code for window edge.
Stefan Monnier [Tue, 17 Nov 2009 03:32:04 +0000 (03:32 +0000)]
(Fx_popup_menu) [HAVE_NS]: Use generic code for window edge.
Suggested by Chad Brown <yandros@mit.edu>.
(push_menu_item): Use MENU_ITEMS_ITEM_* names.

14 years agoMention twos-complement notation.
Jay Belanger [Tue, 17 Nov 2009 02:01:44 +0000 (02:01 +0000)]
Mention twos-complement notation.

14 years ago* semantic.texi (Semantic Internals, Glossary):
Juanma Barranquero [Tue, 17 Nov 2009 01:52:48 +0000 (01:52 +0000)]
* semantic.texi (Semantic Internals, Glossary):
* sem-user.texi (Semantic mode, Include paths, Idle Scheduler)
  (Semanticdb search debugging commands): Fix typos.

14 years ago(Radix modes): Mention twos-complement notation.
Jay Belanger [Mon, 16 Nov 2009 23:41:36 +0000 (23:41 +0000)]
(Radix modes):  Mention twos-complement notation.

14 years ago(calc-b-prefix-help): Remove references to `calc-symclip'.
Jay Belanger [Mon, 16 Nov 2009 23:35:14 +0000 (23:35 +0000)]
(calc-b-prefix-help):  Remove references to `calc-symclip'.

14 years ago(calc-arithmetic-menu): Remove `calc-symclip'.
Jay Belanger [Mon, 16 Nov 2009 23:30:42 +0000 (23:30 +0000)]
(calc-arithmetic-menu): Remove `calc-symclip'.

14 years ago(calc-get-operator):
Jay Belanger [Mon, 16 Nov 2009 23:30:18 +0000 (23:30 +0000)]
(calc-get-operator):
(calc-b-oper-keys): Remove references to `calc-symclip'.

14 years ago(calc-init-extensions): Remove references to symclip.
Jay Belanger [Mon, 16 Nov 2009 23:29:53 +0000 (23:29 +0000)]
(calc-init-extensions): Remove references to symclip.

14 years ago(math-symclip, calcFunc-symclip, calc-symclip): Remove.
Jay Belanger [Mon, 16 Nov 2009 23:29:20 +0000 (23:29 +0000)]
(math-symclip, calcFunc-symclip, calc-symclip): Remove.

14 years ago* emacs-lisp/lisp-mnt.el (lm-keywords): Allow multi-line keywords.
Kevin Ryde [Mon, 16 Nov 2009 22:59:09 +0000 (22:59 +0000)]
* emacs-lisp/lisp-mnt.el (lm-keywords): Allow multi-line keywords.
(lm-keywords-list): Allow comma-only separator like "foo,bar".
Ignore trailing spaces by omit-nulls to split-string (fixing
regression from Emacs 21 due to the incompatible split-string
change).  (Bug #4928.)

14 years ago* makefile.w32-in (INFO_TARGETS, DVI_TARGETS, clean): Add semantic.
Juanma Barranquero [Mon, 16 Nov 2009 22:55:14 +0000 (22:55 +0000)]
* makefile.w32-in (INFO_TARGETS, DVI_TARGETS, clean): Add semantic.
  ($(infodir)/semantic, semantic.dvi): New targets.

14 years ago* textmodes/flyspell.el (sgml-mode-flyspell-verify): Use
Kevin Ryde [Mon, 16 Nov 2009 22:53:21 +0000 (22:53 +0000)]
* textmodes/flyspell.el (sgml-mode-flyspell-verify): Use
`sgml-lexical-context' instead of own parse for tag.  (Further to
Bug#4511).

14 years ago* info/dir: Add Semantic.
Chong Yidong [Mon, 16 Nov 2009 22:26:36 +0000 (22:26 +0000)]
* info/dir: Add Semantic.

14 years ago* Makefile.in: Build the Semantic manual.
Chong Yidong [Mon, 16 Nov 2009 22:25:49 +0000 (22:25 +0000)]
* Makefile.in: Build the Semantic manual.

* semantic.texi, sem-user.texi: New files, adapted from the Semantic
repository.

14 years ago* vc.el (vc-log-show-limit): Default to 2000.
Dan Nicolaescu [Mon, 16 Nov 2009 20:36:06 +0000 (20:36 +0000)]
* vc.el (vc-log-show-limit): Default to 2000.
(vc-print-log-internal): Insert buttons to request more entries
when limiting the output.

* vc-sccs.el (vc-sccs-print-log):
* vc-rcs.el (vc-rcs-print-log):
* vc-cvs.el (vc-cvs-print-log):
* vc-git.el (vc-git-print-log): Return 'limit-unsupported when
LIMIT is non-nil.

14 years ago* net/tramp-gvfs.el (tramp-gvfs-dbus-event-error): Raise only an
Michael Albinus [Mon, 16 Nov 2009 20:10:39 +0000 (20:10 +0000)]
* net/tramp-gvfs.el (tramp-gvfs-dbus-event-error): Raise only an
error when `tramp-gvfs-dbus-event-vector' is set.
(tramp-gvfs-maybe-open-connection): Loop over `read-event'.

14 years ago*** empty log message ***
Jan Djärv [Mon, 16 Nov 2009 19:46:56 +0000 (19:46 +0000)]
*** empty log message ***

14 years agoxmenu.c(x_menu_wait_for_event): Call XFlush before select.
Jan Djärv [Mon, 16 Nov 2009 19:43:40 +0000 (19:43 +0000)]
xmenu.c(x_menu_wait_for_event): Call XFlush before select.

14 years agoRemove unneeded declare-function calls.
Chong Yidong [Mon, 16 Nov 2009 15:34:19 +0000 (15:34 +0000)]
Remove unneeded declare-function calls.

14 years ago(vc-rcs-consult-headers): Add missing save-excursion.
Stefan Monnier [Mon, 16 Nov 2009 14:41:05 +0000 (14:41 +0000)]
(vc-rcs-consult-headers): Add missing save-excursion.

14 years ago* dbus.texi (Receiving Method Calls): New defun
Michael Albinus [Mon, 16 Nov 2009 14:29:55 +0000 (14:29 +0000)]
* dbus.texi (Receiving Method Calls): New defun
`dbus-unregister-service'.

14 years ago* net/dbus.el (dbus-unregister-service): New defun.
Michael Albinus [Mon, 16 Nov 2009 14:25:43 +0000 (14:25 +0000)]
* net/dbus.el (dbus-unregister-service): New defun.
(dbus-register-property): Register the handlers for
"org.freedesktop.DBus.Properties" for SERVICE.
(dbus-property-handler): Fix docstring.

14 years ago(byte-compile-output-file-form):
YAMAMOTO Mitsuharu [Mon, 16 Nov 2009 04:06:12 +0000 (04:06 +0000)]
(byte-compile-output-file-form):
Quote doc string reference in defvaralias as it is not in special form.
(byte-compile-output-docform): Doc fix.

14 years agoRegenerate autoloads.
Glenn Morris [Mon, 16 Nov 2009 02:08:12 +0000 (02:08 +0000)]
Regenerate autoloads.

14 years ago(install-arch-indep): Use a more restrictive Makefile
Glenn Morris [Mon, 16 Nov 2009 02:06:36 +0000 (02:06 +0000)]
(install-arch-indep): Use a more restrictive Makefile
pattern, so as not to exclude makefile*.el.  (Bug#4912)

14 years ago(calc-b-prefix-help): Add help for `calc-symclip'.
Jay Belanger [Mon, 16 Nov 2009 00:11:51 +0000 (00:11 +0000)]
(calc-b-prefix-help):  Add help for `calc-symclip'.

14 years ago(calc-arithmetic-menu): Add item for `calc-symclip'.
Jay Belanger [Mon, 16 Nov 2009 00:07:07 +0000 (00:07 +0000)]
(calc-arithmetic-menu): Add item for `calc-symclip'.
(calc-modes-menu): Add item for twos complement.

14 years ago(calc-get-operator): Add `calc-symclip'.
Jay Belanger [Mon, 16 Nov 2009 00:02:21 +0000 (00:02 +0000)]
(calc-get-operator): Add `calc-symclip'.
(calc-b-oper-keys): Add `calc-symclip' to list.

14 years ago(math-read-number-fancy): Read complement signed numbers.
Jay Belanger [Mon, 16 Nov 2009 00:01:57 +0000 (00:01 +0000)]
(math-read-number-fancy): Read complement signed numbers.
(calc-init-extensions): Add binding for `calc-symclip'.
Add autoloads for `calcFunc-symclip' and `calc-symclip'.

14 years ago(calc-embedded-mode-vars): Add `calc-complement-signed-mode'.
Jay Belanger [Mon, 16 Nov 2009 00:01:17 +0000 (00:01 +0000)]
(calc-embedded-mode-vars): Add `calc-complement-signed-mode'.

14 years ago(calc-word-size): Reset the variables `math-2-word-size' and `math-half-2-word-size'.
Jay Belanger [Mon, 16 Nov 2009 00:00:22 +0000 (00:00 +0000)]
(calc-word-size): Reset the variables `math-2-word-size' and `math-half-2-word-size'.
(math-format-complement-signed, math-symclip, calcFunc-symclip, calc-symclip): New functions.

14 years ago(math-read-token): Read complement signed numbers.
Jay Belanger [Sun, 15 Nov 2009 23:59:38 +0000 (23:59 +0000)]
(math-read-token): Read complement signed numbers.

14 years ago(calcDigit-key): Fix regexp.
Jay Belanger [Sun, 15 Nov 2009 23:58:11 +0000 (23:58 +0000)]
(calcDigit-key): Fix regexp.

14 years ago(math-2-word-size, math-half-2-word-size, calc-complement-signed-mode):
Jay Belanger [Sun, 15 Nov 2009 23:55:53 +0000 (23:55 +0000)]
(math-2-word-size, math-half-2-word-size, calc-complement-signed-mode):
new variables.
(calc-set-mode-line): Add indicator for twos-complements.
(math-format-number): Format twos-complement notation.

14 years ago* register.el (jump-to-register, insert-register): Handle Semantic
Chong Yidong [Sun, 15 Nov 2009 23:54:21 +0000 (23:54 +0000)]
* register.el (jump-to-register, insert-register): Handle Semantic
tags.  From commented-out advice in semantic/senator.el.

14 years ago* vc.el (vc-log-show-limit): New variable.
Dan Nicolaescu [Sun, 15 Nov 2009 20:28:58 +0000 (20:28 +0000)]
* vc.el (vc-log-show-limit): New variable.
(vc-print-log, vc-print-root-log): Add new argument LIMIT.  Set it
when using a prefix argument.
(vc-print-log-internal): Add new argument LIMIT.

* vc-svn.el (vc-svn-print-log):
* vc-mtn.el (vc-mtn-print-log):
* vc-hg.el (vc-hg-print-log):
* vc-bzr.el (vc-bzr-print-log): Add new optional argument LIMIT,
pass it to the log command when set. Make the BUFFER argument
non-optional.

* vc-sccs.el (vc-sccs-print-log):
* vc-rcs.el (vc-rcs-print-log):
* vc-git.el (vc-git-print-log):
* vc-cvs.el (vc-cvs-print-log): Add new optional argument LIMIT,
ignore it.  Make the BUFFER argument non-optional

14 years ago(mode-line-buffer-identification): Do not purecopy.
Dan Nicolaescu [Sun, 15 Nov 2009 20:25:55 +0000 (20:25 +0000)]
(mode-line-buffer-identification): Do not purecopy.

14 years ago* dired.el (dired-mode-map): Move encryption items to "Operate"
Chong Yidong [Sun, 15 Nov 2009 16:23:07 +0000 (16:23 +0000)]
* dired.el (dired-mode-map): Move encryption items to "Operate"
menu (Bug#4703).

14 years ago* strokes.el (strokes-update-window-configuration): Make strokes
Chong Yidong [Sun, 15 Nov 2009 15:59:05 +0000 (15:59 +0000)]
* strokes.el (strokes-update-window-configuration): Make strokes
buffer current before erasing (Bug#4906).

14 years ago* cedet/semantic/idle.el (semantic-idle-summary-mode)
Chong Yidong [Sun, 15 Nov 2009 15:37:17 +0000 (15:37 +0000)]
* cedet/semantic/idle.el (semantic-idle-summary-mode)
(semantic-idle-summary-mode): Define using define-minor-mode
instead of define-semantic-idle-service.
(semantic-idle-summary-mode): New function.
(semantic-idle-summary-mode-setup): Use pre-command-hook to ensure
that mouse motion does not reset the echo area.

14 years ago(set-mark-default-inactive): Add :type, :group
Juri Linkov [Sun, 15 Nov 2009 15:32:15 +0000 (15:32 +0000)]
(set-mark-default-inactive): Add :type, :group
and :version.  (Bug#4876)

14 years ago* arc-mode.el (archive-maybe-copy): Move creation of directory ...
Michael Albinus [Sun, 15 Nov 2009 13:52:37 +0000 (13:52 +0000)]
* arc-mode.el (archive-maybe-copy): Move creation of directory ...
(archive-unique-fname): ... here.  (Bug#4929)

14 years ago2009-11-15 Carsten Dominik <dominik@u016822.science.uva.nl>
Carsten Dominik [Sun, 15 Nov 2009 07:17:00 +0000 (07:17 +0000)]
2009-11-15  Carsten Dominik  <dominik@u016822.science.uva.nl>

* refcards/orgcard.tex: Push version number to 6.33a.

14 years ago2009-11-15 Carsten Dominik <carsten.dominik@gmail.com>
Carsten Dominik [Sun, 15 Nov 2009 07:16:21 +0000 (07:16 +0000)]
2009-11-15  Carsten Dominik  <carsten.dominik@gmail.com>

* org.texi (Speed keys): New section.

14 years ago2009-11-15 Carsten Dominik <carsten.dominik@gmail.com>
Carsten Dominik [Sun, 15 Nov 2009 07:11:04 +0000 (07:11 +0000)]
2009-11-15  Carsten Dominik  <carsten.dominik@gmail.com>

* org-latex.el (org-export-as-latex): Add the :drawers property.

2009-11-15  Carsten Dominik  <carsten.dominik@gmail.com>

* org.el (org-speed-commands-user): Allow documentation headlines.
(org-speed-commands-default): Organize the value of this constant
with descriptive headlines.
(org-print-speed-command): Output the headlines.

2009-11-15  Carsten Dominik  <carsten.dominik@gmail.com>

* org-agenda.el (org-agenda-show-outline-path): New option.
(org-agenda-do-context-action): New function.
(org-agenda-next-line, org-agenda-previous-line): Use
`org-agenda-do-context-action'.

* org.el (org-use-speed-commands): Allow function value.
(org-speed-commands-default): Make headline motion safe, so that
these commands always end on a headline.
(org-speed-commands-default): New key `v' for `org-agenda'.
(org-speed-move-safe): New function.
(org-self-insert-command): Use the function value of
`org-use-speed-commands'.
(org-get-outline-path): Improve docstring.
(org-format-outline-path): New function.
(org-display-outline-path): New function.

2009-11-15  John Wiegley  <jwiegley@gmail.com>

* org-clock.el (org-clock-resolve): If `org-clock-into-string' is
a string, use that to find the LOGBOOK drawer.

14 years ago(help-make-xrefs): Undo the last revert, and replace it with a real fix.
Stefan Monnier [Sun, 15 Nov 2009 05:16:51 +0000 (05:16 +0000)]
(help-make-xrefs): Undo the last revert, and replace it with a real fix.

14 years ago(disabled-command-function): Add useful args.
Stefan Monnier [Sun, 15 Nov 2009 05:12:52 +0000 (05:12 +0000)]
(disabled-command-function): Add useful args.
Setup the help buffer so that [back] works.
Remove redundant call to help-mode.
(disabled-command-function): Use `case'.
(en/disable-command): New function extracted from enable-command.
(enable-command, disable-command): Use it.

14 years agoFix declarations.
Glenn Morris [Sun, 15 Nov 2009 01:45:23 +0000 (01:45 +0000)]
Fix declarations.

14 years ago(menu-bar-tools-menu): Read and send mail entries are not constants. (Bug#4913)
Glenn Morris [Sat, 14 Nov 2009 20:05:33 +0000 (20:05 +0000)]
(menu-bar-tools-menu): Read and send mail entries are not constants.  (Bug#4913)

14 years ago(elint-standard-variables): Doc fix.
Glenn Morris [Sat, 14 Nov 2009 19:57:09 +0000 (19:57 +0000)]
(elint-standard-variables): Doc fix.

Add some comments related to #1063.

14 years agoShigeru Fukaya <shigeru.fukaya at gmail.com>
Glenn Morris [Sat, 14 Nov 2009 19:55:37 +0000 (19:55 +0000)]
Shigeru Fukaya <shigeru.fukaya at gmail.com>

(elint-standard-variables): Add some variables defined in C that have
no doc-strings.  (Bug#1063)

14 years ago(Holiday Customizing): Replace obsolete alias.
Glenn Morris [Sat, 14 Nov 2009 19:29:45 +0000 (19:29 +0000)]
(Holiday Customizing): Replace obsolete alias.

14 years agoFrancis Wright <F.J.Wright at qmul.ac.uk>
Glenn Morris [Sat, 14 Nov 2009 19:08:41 +0000 (19:08 +0000)]
Francis Wright  <F.J.Wright at qmul.ac.uk>

(data, files): Doc fixes for custom groups.  (Bug#3327)

14 years agoIgnore errors from mkdir when creating deps
Andreas Schwab [Sat, 14 Nov 2009 18:35:19 +0000 (18:35 +0000)]
Ignore errors from mkdir when creating deps
directory.

14 years agogtkutil.c (xg_update_frame_menubar): Do nothing if menubar already has a parent.
Jan Djärv [Sat, 14 Nov 2009 18:22:34 +0000 (18:22 +0000)]
gtkutil.c (xg_update_frame_menubar): Do nothing if menubar already has a parent.

14 years ago* simple.el (shell-command): Doc fix (Bug#4891).
Chong Yidong [Sat, 14 Nov 2009 16:07:44 +0000 (16:07 +0000)]
* simple.el (shell-command): Doc fix (Bug#4891).

14 years ago* help-mode.el (help-make-xrefs): Revert 2009-11-13 change.
Chong Yidong [Sat, 14 Nov 2009 15:44:43 +0000 (15:44 +0000)]
* help-mode.el (help-make-xrefs): Revert 2009-11-13 change.

14 years agoUse gcc-generated dependency files if we can (GNU Make and gcc required).
Jan Djärv [Sat, 14 Nov 2009 15:17:38 +0000 (15:17 +0000)]
Use gcc-generated dependency files if we can (GNU Make and gcc required).

* Makefile.in: If AUTO_DEPEND is defined, make gcc generate
dependency files in deps/. Include those files into Makefile.

* config.in: Generated (AUTO_DEPEND).

* configure.in: --enable-autodepend is new.  Check for GNU Make
and that gcc supports -MMD -MF. Define AUTO_DEPEND if we can use
gcc and GNU make to generate dependencies.

14 years ago* commands.texi (Motion Events): Fix typo (Bug#4907).
Chong Yidong [Sat, 14 Nov 2009 15:15:32 +0000 (15:15 +0000)]
* commands.texi (Motion Events): Fix typo (Bug#4907).

14 years ago(viper-set-hooks): Remove duplicate advice statements for vc-diff,
Glenn Morris [Sat, 14 Nov 2009 04:37:00 +0000 (04:37 +0000)]
(viper-set-hooks): Remove duplicate advice statements for vc-diff,
emerge-quit, and rmail-cease-edit.  If they are already loaded,
eval-after-load will do the right thing.

14 years ago(top-level): Remove unnecessary load of ange-ftp when compiling.
Glenn Morris [Sat, 14 Nov 2009 04:31:52 +0000 (04:31 +0000)]
(top-level): Remove unnecessary load of ange-ftp when compiling.

14 years agoNo need to cc on -done messages.
Glenn Morris [Sat, 14 Nov 2009 04:27:21 +0000 (04:27 +0000)]
No need to cc on -done messages.

14 years ago(byte-compile-single-version): Remove, unused.
Glenn Morris [Sat, 14 Nov 2009 04:23:18 +0000 (04:23 +0000)]
(byte-compile-single-version): Remove, unused.

(baud-rate, byte-code-function-p)
(byte-compile-generate-emacs19-bytecodes, byte-compile-overwrite-file)
(byte-compiler-valid-options, byte-compiler-options-handler)
(byte-compile-and-load-file, byte-compile-buffer):
Remove commented-out code.

14 years ago(x-selection-owner-p): Declare.
Glenn Morris [Sat, 14 Nov 2009 04:18:10 +0000 (04:18 +0000)]
(x-selection-owner-p): Declare.
(read-mail-command): Use custom radio type rather than choice.
(completion-no-auto-exit): Doc fix.

14 years ago(Acknowledgments): Update for recent Org changes.
Glenn Morris [Sat, 14 Nov 2009 04:16:17 +0000 (04:16 +0000)]
(Acknowledgments): Update for recent Org changes.

14 years ago(defgroup): Doc fix.
Glenn Morris [Sat, 14 Nov 2009 04:14:49 +0000 (04:14 +0000)]
(defgroup): Doc fix.

14 years ago(epg): Doc fix.
Glenn Morris [Sat, 14 Nov 2009 04:14:05 +0000 (04:14 +0000)]
(epg): Doc fix.

14 years ago(postscript): Doc fix.
Glenn Morris [Sat, 14 Nov 2009 04:12:58 +0000 (04:12 +0000)]
(postscript): Doc fix.

14 years agoFix typo.
Glenn Morris [Sat, 14 Nov 2009 04:07:19 +0000 (04:07 +0000)]
Fix typo.

14 years agoFix typos.
Glenn Morris [Sat, 14 Nov 2009 04:07:05 +0000 (04:07 +0000)]
Fix typos.

14 years ago* bindings.el (mode-line-buffer-identification): Purecopy only the string.
Dan Nicolaescu [Sat, 14 Nov 2009 02:01:35 +0000 (02:01 +0000)]
* bindings.el (mode-line-buffer-identification): Purecopy only the string.
* international/ccl.el (define-ccl-program): Do not purecopy the
docstring, defconst does it anyway.

14 years ago(add-change-log-entry): Avoid displaying the changelog a second time.
Stefan Monnier [Fri, 13 Nov 2009 22:54:16 +0000 (22:54 +0000)]
(add-change-log-entry): Avoid displaying the changelog a second time.

14 years ago* x-dnd.el (x-dnd-maybe-call-test-function):
Stefan Monnier [Fri, 13 Nov 2009 22:19:45 +0000 (22:19 +0000)]
* x-dnd.el (x-dnd-maybe-call-test-function):
* window.el (split-window-vertically):
* whitespace.el (whitespace-help-on):
* vc-rcs.el (vc-rcs-consult-headers):
* userlock.el (ask-user-about-lock-help)
(ask-user-about-supersession-help):
* type-break.el (type-break-force-mode-line-update):
* time-stamp.el (time-stamp-conv-warn):
* terminal.el (te-set-output-log, te-more-break, te-filter)
(te-sentinel,terminal-emulator):
* term.el (make-term, term-exec, term-sentinel, term-read-input-ring)
(term-write-input-ring, term-check-source, term-start-output-log):
(term-display-buffer-line, term-dynamic-list-completions):
(term-ansi-make-term, serial-term):
* subr.el (selective-display):
* strokes.el (strokes-xpm-to-compressed-string, strokes-decode-buffer)
(strokes-encode-buffer, strokes-xpm-for-compressed-string):
* speedbar.el (speedbar-buffers-tail-notes, speedbar-buffers-item-info)
(speedbar-reconfigure-keymaps, speedbar-add-localized-speedbar-support)
(speedbar-remove-localized-speedbar-support)
(speedbar-set-mode-line-format, speedbar-create-tag-hierarchy)
(speedbar-update-special-contents, speedbar-buffer-buttons-engine)
(speedbar-buffers-line-directory):
* simple.el (shell-command-on-region, append-to-buffer)
(prepend-to-buffer):
* shadowfile.el (shadow-save-todo-file):
* scroll-bar.el (scroll-bar-set-window-start, scroll-bar-drag-1)
(scroll-bar-maybe-set-window-start):
* sb-image.el (speedbar-image-dump):
* saveplace.el (save-place-alist-to-file, save-places-to-alist)
(load-save-place-alist-from-file):
* ps-samp.el (ps-print-message-from-summary):
* ps-print.el (ps-flush-output, ps-insert-file, ps-get-boundingbox)
(ps-background-image, ps-begin-job, ps-do-despool):
* ps-bdf.el (bdf-find-file, bdf-read-font-info):
* printing.el (pr-interface, pr-ps-file-print, pr-find-buffer-visiting)
(pr-ps-message-from-summary, pr-lpr-message-from-summary):
(pr-call-process, pr-file-list, pr-interface-save):
* novice.el (disabled-command-function)
(enable-command, disable-command):
* mouse.el (mouse-buffer-menu-alist):
* mouse-copy.el (mouse-kill-preserving-secondary):
* macros.el (kbd-macro-query):
* ledit.el (ledit-go-to-lisp, ledit-go-to-liszt):
* informat.el (batch-info-validate):
* ido.el (ido-copy-current-word, ido-initiate-auto-merge):
* hippie-exp.el (try-expand-dabbrev-visible):
* help-mode.el (help-make-xrefs):
* help-fns.el (describe-variable):
* generic-x.el (bat-generic-mode-run-as-comint):
* finder.el (finder-mouse-select):
* find-dired.el (find-dired-sentinel):
* filesets.el (filesets-file-close):
* files.el (list-directory):
* faces.el (list-faces-display, describe-face):
* facemenu.el (list-colors-display):
* ezimage.el (ezimage-image-association-dump, ezimage-image-dump):
* epg.el (epg--process-filter, epg-cancel):
* epa.el (epa--marked-keys, epa--select-keys, epa-display-info)
(epa--read-signature-type):
* emerge.el (emerge-copy-as-kill-A, emerge-copy-as-kill-B)
(emerge-file-names):
* ehelp.el (electric-helpify):
* ediff.el (ediff-regions-wordwise, ediff-regions-linewise):
* ediff-vers.el (rcs-ediff-view-revision):
* ediff-util.el (ediff-setup):
* ediff-mult.el (ediff-append-custom-diff):
* ediff-diff.el (ediff-exec-process, ediff-process-sentinel)
(ediff-wordify):
* echistory.el (Electric-command-history-redo-expression):
* dos-w32.el (find-file-not-found-set-buffer-file-coding-system):
* disp-table.el (describe-display-table):
* dired.el (dired-find-buffer-nocreate):
* dired-aux.el (dired-rename-subdir, dired-dwim-target-directory):
* dabbrev.el (dabbrev--same-major-mode-p):
* chistory.el (list-command-history):
* apropos.el (apropos-documentation):
* allout.el (allout-obtain-passphrase):
(allout-copy-exposed-to-buffer):
(allout-verify-passphrase): Use with-current-buffer.

14 years ago(ELCFILES): Regenerate.
Glenn Morris [Fri, 13 Nov 2009 17:03:30 +0000 (17:03 +0000)]
(ELCFILES): Regenerate.

14 years ago* dbus.texi (Type Conversion): Fix typo.
Michael Albinus [Fri, 13 Nov 2009 16:19:19 +0000 (16:19 +0000)]
* dbus.texi (Type Conversion): Fix typo.
(Asynchronous Methods): Rename `dbus-registered-functions-table' to
`dbus-registered-objects-table'.
(Receiving Method Calls): New defun `dbus-register-property'.  Move
`dbus-unregister-object' here.

14 years ago* dbusbind.c (Vdbus_registered_objects_table): Renamed from
Michael Albinus [Fri, 13 Nov 2009 16:12:08 +0000 (16:12 +0000)]
* dbusbind.c (Vdbus_registered_objects_table): Renamed from
Vdbus_registered_functions_table, because it contains also
properties.  Fix docstring.
(Fdbus_call_method, Fdbus_call_method_asynchronously): Fix
docstring.

14 years ago* net/dbus.el (dbus-registered-objects-table): Renamed from
Michael Albinus [Fri, 13 Nov 2009 16:05:24 +0000 (16:05 +0000)]
* net/dbus.el (dbus-registered-objects-table): Renamed from
`dbus-registered-functions-table', because it contains also
properties.
(dbus-unregister-object): Unregister also properties.
(dbus-get-property, dbus-set-property, dbus-get-all-properties):
Use a timeout of 500 msec, in order to not block.
(dbus-register-property, dbus-property-handler): New defuns.

14 years ago(mark_object): Don't reprocess marked strings.
Stefan Monnier [Fri, 13 Nov 2009 15:26:28 +0000 (15:26 +0000)]
(mark_object): Don't reprocess marked strings.
Check vector's markbit earlier.  Adjust calls to mark_vectorlike.
(mark_vectorlike, mark_char_table): Assume the object is unmarked.

14 years ago(minibuffer-default-add-completions): Drop deprecated 4th arg.
Stefan Monnier [Fri, 13 Nov 2009 14:50:17 +0000 (14:50 +0000)]
(minibuffer-default-add-completions): Drop deprecated 4th arg.

14 years ago(word_boundary_p): Adjusted for the change of the
Kenichi Handa [Fri, 13 Nov 2009 11:18:02 +0000 (11:18 +0000)]
(word_boundary_p): Adjusted for the change of the
semantics of Vword_combining_categories.
(Vword_combining_categories): Describe the slight change of the
semantics.

14 years ago(artist-mouse-choose-operation): Call `tmm-prompt' instead of `x-popup-menu'
Eli Zaretskii [Fri, 13 Nov 2009 10:35:39 +0000 (10:35 +0000)]
(artist-mouse-choose-operation): Call `tmm-prompt' instead of `x-popup-menu'
if we cannot popup menus.
(artist-compute-up-event-key): New function.
(artist-mouse-choose-operation, artist-down-mouse-1): Call it.