bpt/emacs.git
13 years agomerge trunk
Kenichi Handa [Wed, 25 Aug 2010 03:49:02 +0000 (12:49 +0900)]
merge trunk

13 years agoFix finding a stop position for composition.
Kenichi Handa [Wed, 25 Aug 2010 00:54:05 +0000 (09:54 +0900)]
Fix finding a stop position for composition.

13 years ago* emacs-lisp/package.el (list-packages): Alias for package-list-packages.
Chong Yidong [Tue, 24 Aug 2010 21:36:33 +0000 (17:36 -0400)]
* emacs-lisp/package.el (list-packages): Alias for package-list-packages.

13 years ago* textmodes/flyspell.el (flyspell-check-tex-math-command): Doc fix
Kevin Ryde [Tue, 24 Aug 2010 20:58:07 +0000 (16:58 -0400)]
* textmodes/flyspell.el (flyspell-check-tex-math-command): Doc fix
(Bug#5651).

13 years agoFix filter functions discussion in Lisp manual.
Chong Yidong [Tue, 24 Aug 2010 20:43:24 +0000 (16:43 -0400)]
Fix filter functions discussion in Lisp manual.

* processes.texi (Filter Functions): Use `buffer-live-p' instead
of `buffer-name' in the main text as well as in the example
(Bug#3098).

13 years ago* progmodes/ruby-mode.el (ruby): Add defgroup.
Kevin Ryde [Tue, 24 Aug 2010 20:29:44 +0000 (16:29 -0400)]
* progmodes/ruby-mode.el (ruby): Add defgroup.

13 years ago* lisp/progmodes/python.el: Add Ipython support (Bug#5390).
Chong Yidong [Tue, 24 Aug 2010 20:20:21 +0000 (16:20 -0400)]
* lisp/progmodes/python.el: Add Ipython support (Bug#5390).
Based on a patch by Fabian Ezequiel Gallina.

(python-shell-prompt-alist)
(python-shell-continuation-prompt-alist): New options.
(python--set-prompt-regexp): New function.
(inferior-python-mode, run-python, python-shell): Require
ansi-color.  Use python--set-prompt-regexp to set the comint
prompt based on the Python interpreter.
(python--prompt-regexp): New var.
(python-check-comint-prompt)
(python-comint-output-filter-function): Use it.
(run-python): Use a pipe (Bug#5694).
(python-send-region): Send a different Python command if Ipython is in use.
(python-check-version): Use a Python command to find the version.

13 years agoAvoid clobbering primary selection when switching frames (Bug#6872).
Chong Yidong [Tue, 24 Aug 2010 15:48:14 +0000 (11:48 -0400)]
Avoid clobbering primary selection when switching frames (Bug#6872).

* lisp/mouse.el (mouse-yank-primary): Avoid setting primary when
deactivating the mark (Bug#6872).

* src/keyboard.c (command_loop_1): Don't set primary selection during
handle-switch-frame (Bug#6872).

13 years ago* NEWS: dbus.el supports alternative buses.
Michael Albinus [Mon, 23 Aug 2010 13:57:55 +0000 (15:57 +0200)]
* NEWS: dbus.el supports alternative buses.

13 years ago* dbus.texi (Alternative Buses): New chapter.
Michael Albinus [Mon, 23 Aug 2010 13:48:48 +0000 (15:48 +0200)]
* dbus.texi (Alternative Buses): New chapter.

13 years ago* net/dbus.el: Accept UNIX domain sockets as bus address.
Michael Albinus [Mon, 23 Aug 2010 13:08:54 +0000 (15:08 +0200)]
* net/dbus.el: Accept UNIX domain sockets as bus address.
(top): Don't initialize `dbus-registered-objects-table' anymore,
this is done in dbusbind,c.
(dbus-check-event): Adapt test for bus.
(dbus-return-values-table, dbus-unregister-service)
(dbus-event-bus-name, dbus-introspect, dbus-register-property):
Adapt doc string.

13 years ago* dbusbind.c: Accept UNIX domain sockets as bus address.
Michael Albinus [Mon, 23 Aug 2010 13:02:00 +0000 (15:02 +0200)]
* dbusbind.c: Accept UNIX domain sockets as bus address.
(Fdbus_close_bus): New function.
(Vdbus_registered_buses): New variable.
(xd_initialize): Implement string as bus address.
(Fdbus_init_bus): Add bus to Vdbus_registered_buses).
(Fdbus_get_unique_name, Fdbus_call_method)
(Fdbus_call_method_asynchronously, Fdbus_method_return_internal)
(Fdbus_method_error_internal, Fdbus_send_signal)
(Fdbus_register_signal, Fdbus_register_method): Remove bus type
check.  This is done in xd_initialize_bus.  Adapt doc string, if
necessary.
(xd_pending_messages, xd_read_queued_messages): Loop over buses in
Vdbus_registered_buses.
(Vdbus_registered_objects_table): Create hash.

13 years agoFix configure checks
Andreas Schwab [Mon, 23 Aug 2010 12:54:09 +0000 (14:54 +0200)]
Fix configure checks

* configure.in: Fix check for librsvg, imagemagick and
MagickExportImagePixels.

13 years agosrc/ChangeLog: Fix typos.
Juanma Barranquero [Mon, 23 Aug 2010 10:28:12 +0000 (12:28 +0200)]
src/ChangeLog: Fix typos.

13 years ago* ido.el (ido-use-virtual-buffers): Fix typo in docstring.
Juanma Barranquero [Mon, 23 Aug 2010 10:21:01 +0000 (12:21 +0200)]
* ido.el (ido-use-virtual-buffers): Fix typo in docstring.

13 years agoMove reading an extended command to Elisp (bug#5364, bug#5214).
Juri Linkov [Sun, 22 Aug 2010 23:27:59 +0000 (00:27 +0100)]
Move reading an extended command to Elisp (bug#5364, bug#5214).

* lisp/simple.el (read-extended-command): New function with the logic
for `completing-read' moved to Elisp from `execute-extended-command'.
Use `function-called-at-point' in `minibuffer-default-add-function'
to get a command name for M-n (bug#5364, bug#5214).

* src/keyboard.c (Fexecute_extended_command): Move reading a command name
with `completing-read' to a new Elisp function `read-extended-command'.
Call it to read a command to `function'  (bug#5364, bug#5214).

13 years agoMake obsolete --unibyte argument do nothing (Bug#6886).
Chong Yidong [Sun, 22 Aug 2010 21:15:20 +0000 (17:15 -0400)]
Make obsolete --unibyte argument do nothing (Bug#6886).

* src/emacs.c (main): Remove --unibyte handling (Bug#6886).

* lisp/startup.el (command-line-1): Issue warning for ignored arguments
--unibyte, etc (Bug#6886).

* doc/lispref/nonascii.texi (Text Representations):
* doc/lispref/loading.texi (Loading Non-ASCII):
* doc/lispref/compile.texi (Byte Compilation): Don't mention obsolete
--unibyte command-line argument.

13 years agoMerge changes from emacs-23 branch.
Chong Yidong [Sun, 22 Aug 2010 20:02:16 +0000 (16:02 -0400)]
Merge changes from emacs-23 branch.

13 years agoDoc fix for define-minor-mode (Bug#6880).
Chong Yidong [Sun, 22 Aug 2010 19:30:26 +0000 (15:30 -0400)]
Doc fix for define-minor-mode (Bug#6880).

* doc/lispref/modes.texi (Defining Minor Modes): Doc fix (Bug#6880).

* emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix (Bug#6880).

13 years agoFix dependencies according to 2010-08-22T15:14:37Z!dann@ics.uci.edu.
Eli Zaretskii [Sun, 22 Aug 2010 17:18:52 +0000 (20:18 +0300)]
Fix dependencies according to 2010-08-22T15:14:37Z!dann@ics.uci.edu.

 deps.mk (sysdep.o, msdos.o): Depend on sysselect.h.

13 years agoFix the w32 build after 2010-08-22T15:14:37Z!dann@ics.uci.edu.
Eli Zaretskii [Sun, 22 Aug 2010 17:00:08 +0000 (20:00 +0300)]
Fix the w32 build after 2010-08-22T15:14:37Z!dann@ics.uci.edu.

 sysselect.h [WINDOWSNT]: Don't define the FD_* and select stuff for w32.
 s/ms-w32.h (HAVE_SYS_TIMEB_H): Don't #undef HAVE_SYS_SELECT_H, it's done
 in nt/config.nt.
 makefile.w32-in ($(BLD)/sysdep.$(O)): Depend on sysselect.h.

13 years agoClean up and ANSIfy unexcoff.c.
Eli Zaretskii [Sun, 22 Aug 2010 15:43:00 +0000 (18:43 +0300)]
Clean up and ANSIfy unexcoff.c.

 unexcoff.c (report_error, make_hdr, write_segment)
 (copy_text_and_data, copy_sym, mark_x, adjust_lnnoptrs, unexec):
 Convert argument lists and prototypes to ANSI C.
 (make_hdr, write_segment): Remove unused variables.
 (unexec): Remove commented-out line.  Initialize `new' to shut up
 compiler warnings.

13 years agoClean up unexcoff.c.
Eli Zaretskii [Sun, 22 Aug 2010 15:37:01 +0000 (18:37 +0300)]
Clean up unexcoff.c.

 unexcoff.c (report_error, make_hdr, write_segment)
 (copy_text_and_data, copy_sym, mark_x, adjust_lnnoptrs, unexec):
 Convert argument lists and prototypes to ANSI C.
 (make_hdr, write_segment): Remove unused variables.
 (unexec): Remove commented-out line.  Initialize `new' to shut up
 compiler warnings.

13 years agoSimplify termio code.
Dan Nicolaescu [Sun, 22 Aug 2010 15:14:37 +0000 (08:14 -0700)]
Simplify termio code.
All non-MSDOS non-WINDOWSNT platforms define HAVE_TERMIOS, so
HAVE_TERMIO code is obsolete.
Replace HAVE_TERMIOS conditionals with !DOS_NT.
* src/systty.h: Do not define HAVE_TCATTR.
Remove HAVE_TERMIO, HAVE_LTCHARS and HAVE_TCHARS code.
Do not define EMACS_HAVE_TTY_PGRP.  Only define
EMACS_GET_TTY_PGRP for !DOS_NT.
* src/sysdep.c: Include sysselect.h unconditionally.  Do not include
sys/ioctl.h and termios.h, systty.h does it.  Use
HAVE_SYS_UTSNAME_H instead of USG as an include guard.
(init_baud_rate): Remove HAVE_TERMIO code.
(child_setup_tty): Remove HAVE_TERMIO code.
(emacs_get_tty, emacs_set_tty): Remove HAVE_TERMIO, HAVE_TCHARS
and HAVE_LTCHARS code.  Use !DOS_NT instead of HAVE_TCATTR.
(new_ltchars, new_tchars): Remove, unused.
(init_sys_modes): Remove HAVE_TERMIO, HAVE_TCHARS and HAVE_LTCHARS
code.  Remove special casing for __mips__, it was a no-op.  Remove
HAVE_TCATTR conditional, it is implied by HAVE_TERMIOS.
(init_sys_modes): Remove HPUX special case.
* src/process.c: Include stdlib.h unconditionally.  Do not include
fcntl.h, systty.h does it.  Remove conditional code for
HAVE_SERIAL, it is always true.
(process_send_signal): Remove HAVE_TERMIOS conditional, it's
always true when SIGNALS_VIA_CHARACTERS is true.
(Fcontinue_process, Fprocess_send_eof): Simplify conditionals:
!WINDOWSNT means HAVE_TERMIOS.
(create_process): Remove HAVE_TERMIOS, it's inside a HAVE_PTYS
conditional, which is true for all HAVE_TERMIOS systems.
* src/keyboard.c (init_keyboard): Do not use HAVE_TERMIO, use !DOS_NT
instead of HAVE_TERMIOS.
* src/emacs.c (shut_down_emacs): Use !defined DOS_NT instead of
EMACS_HAVE_TTY_PGRP.
* src/callproc.c (child_setup): Move EMACS_SET_TTY_PGRP use to the
non-MSDOS, non-WINDOWSNT code, it's only defined for such systems
anyway.

13 years agomerge whitespace.el change from trunk
Chong Yidong [Sun, 22 Aug 2010 04:12:25 +0000 (00:12 -0400)]
merge whitespace.el change from trunk

13 years agoInsert bug number.
Vinicius Jose Latorre [Sat, 21 Aug 2010 19:26:43 +0000 (16:26 -0300)]
Insert bug number.

13 years ago* cus-edit.el (custom-group-value-create): Add extra newline before end line (Bug...
Chong Yidong [Sat, 21 Aug 2010 14:46:43 +0000 (10:46 -0400)]
* cus-edit.el (custom-group-value-create): Add extra newline before end line (Bug#6876).

13 years ago* lisp/vc/add-log.el (add-log-file-name): Don't get confused by symlinks.
Stefan Monnier [Sat, 21 Aug 2010 14:09:46 +0000 (16:09 +0200)]
* lisp/vc/add-log.el (add-log-file-name): Don't get confused by symlinks.

13 years agoFix buffer-list rename&refresh after after killing a buffer in ido.
Leo Liu [Sat, 21 Aug 2010 13:35:27 +0000 (15:35 +0200)]
Fix buffer-list rename&refresh after after killing a buffer in ido.
* lisp/ido.el: Revert Óscar's.
(ido-kill-buffer-at-head): Exit the minibuffer with ido-exit=refresh.
Remember the buffers at head, rather than their name.
* lisp/iswitchb.el (iswitchb-kill-buffer): Re-make the list.

13 years agoxdisp.c: Fix typo in a comment in note_tool_bar_highlight.
Eli Zaretskii [Sat, 21 Aug 2010 13:25:03 +0000 (16:25 +0300)]
xdisp.c: Fix typo in a comment in note_tool_bar_highlight.

13 years agoFix mirroring pixel positions on GUI terminals.
Eli Zaretskii [Sat, 21 Aug 2010 09:35:31 +0000 (12:35 +0300)]
Fix mirroring pixel positions on GUI terminals.

 dispnew.c (buffer_posn_from_coords): Fix off-by-one error in
 mirroring pixel positions.

13 years ago* progmodes/make-mode.el (makefile-fill-paragraph): Account for the
Stefan Monnier [Sat, 21 Aug 2010 09:19:38 +0000 (11:19 +0200)]
* progmodes/make-mode.el (makefile-fill-paragraph): Account for the
extra backslash added to each line.

Fixes: debbugs:6890

13 years ago* subr.el (read-key): Don't echo keystrokes.
Stefan Monnier [Sat, 21 Aug 2010 08:56:54 +0000 (10:56 +0200)]
* subr.el (read-key): Don't echo keystrokes.

Fixes: debbugs:6883

13 years agoCleanups and fixes for mouse-save-then-kill and mouse-secondary-save-then-kill.
Chong Yidong [Sat, 21 Aug 2010 04:46:23 +0000 (00:46 -0400)]
Cleanups and fixes for mouse-save-then-kill and mouse-secondary-save-then-kill.

* mouse.el (mouse-save-then-kill): Don't save region to kill ring
when extending it.  Before killing on the second click, check if
the buffer is the correct one.  Doc fix.
(mouse-secondary-save-then-kill): Allow usage without first
calling mouse-start-secondary, by defaulting to point.  Don't save
an empty secondary selection.  Doc fix.

13 years agoFix slow cursor movement.
Vinicius Jose Latorre [Sat, 21 Aug 2010 04:43:04 +0000 (01:43 -0300)]
Fix slow cursor movement.

13 years agoChangeLog fixes.
Glenn Morris [Sat, 21 Aug 2010 02:21:51 +0000 (19:21 -0700)]
ChangeLog fixes.

13 years ago* doc/emacs/misc.texi (Amusements): Mention bubbles and animate.
Glenn Morris [Sat, 21 Aug 2010 02:14:07 +0000 (19:14 -0700)]
* doc/emacs/misc.texi (Amusements): Mention bubbles and animate.

13 years ago* lisp/menu-bar.el (menu-bar-games-menu): Add landmark.
Glenn Morris [Sat, 21 Aug 2010 02:11:34 +0000 (19:11 -0700)]
* lisp/menu-bar.el (menu-bar-games-menu): Add landmark.

13 years agoRemove unused variables malloc_sbrk_used and malloc_sbrk_unused.
Dan Nicolaescu [Fri, 20 Aug 2010 23:02:11 +0000 (16:02 -0700)]
Remove unused variables malloc_sbrk_used and malloc_sbrk_unused.
* src/alloc.c (malloc_sbrk_used, malloc_sbrk_unused): Remove,
write only.
(init_alloc_once): Remove writes to malloc_sbrk_unused, and
malloc_sbrk_used, nothing uses them.

13 years agoSmall src/puresize.h cleanup.
Dan Nicolaescu [Fri, 20 Aug 2010 22:52:10 +0000 (15:52 -0700)]
Small src/puresize.h cleanup.
* src/puresize.h: Remove code assuming PNTR_COMPARISON_TYPE is not
defined, unconditionally defined in lisp.h.

13 years ago* src/term.c: Do not include <termios.h>, systty.h does it.
Dan Nicolaescu [Fri, 20 Aug 2010 22:44:38 +0000 (15:44 -0700)]
* src/term.c: Do not include <termios.h>, systty.h does it.

13 years agoRemove redundant HAVE_TCATTR defines.
Dan Nicolaescu [Fri, 20 Aug 2010 22:36:07 +0000 (15:36 -0700)]
Remove redundant HAVE_TCATTR defines.
* src/s/unixware.h (HAVE_TCATTR):
* src/s/aix4-2.h (HAVE_TCATTR): Remove definitions, not needed.
systty.h defines it when HAVE_TERMIOS is defined.

13 years agoFix last change in buffer_posn_from_coords for text terminals.
Eli Zaretskii [Fri, 20 Aug 2010 21:01:36 +0000 (00:01 +0300)]
Fix last change in buffer_posn_from_coords for text terminals.

 dispnew.c (buffer_posn_from_coords): Add one-character offset for R2L lines.

13 years agoFix last change in buffer_posn_from_coords for text terminals.
Eli Zaretskii [Fri, 20 Aug 2010 20:55:09 +0000 (23:55 +0300)]
Fix last change in buffer_posn_from_coords for text terminals.

 dispnew.c (buffer_posn_from_coords): Add one-character offset for R2L lines.

13 years agoFix the MSDOS build broken by the ImageMagick support.
Eli Zaretskii [Fri, 20 Aug 2010 20:26:12 +0000 (23:26 +0300)]
Fix the MSDOS build broken by the ImageMagick support.

 sed1v2.inp (IMAGEMAGICK_LIBS, IMAGEMAGICK_CFLAGS): Edit to empty.

13 years agoAdd cross-references regarding POSITION of mouse events.
Eli Zaretskii [Fri, 20 Aug 2010 20:07:29 +0000 (23:07 +0300)]
Add cross-references regarding POSITION of mouse events.

 commands.texi (Misc Events): Add cross-references to where
 POSITION of a mouse event is described in detail.

13 years agomerge from upstream
Joakim Verona [Fri, 20 Aug 2010 20:00:00 +0000 (22:00 +0200)]
merge from upstream

13 years agominor imagemagick tweaks, one configure bugfix, and some ChangeLogs
Joakim Verona [Fri, 20 Aug 2010 19:55:21 +0000 (21:55 +0200)]
minor imagemagick tweaks, one configure bugfix, and some ChangeLogs

13 years agoFix version string in top-level MSDOS Makefile.
Eli Zaretskii [Fri, 20 Aug 2010 19:49:20 +0000 (22:49 +0300)]
Fix version string in top-level MSDOS Makefile.

 msdos/mainmake.v2 (version): Update due to change in emacs.c.
 src/emacs.c <emacs_version>: Add a comment regarding msdos/mainmake.v2's
 dependency on the syntax of this declaration.

13 years agoFix version string in top-level MSDOS Makefile.
Eli Zaretskii [Fri, 20 Aug 2010 19:45:24 +0000 (22:45 +0300)]
Fix version string in top-level MSDOS Makefile.

 msods/mainmake.v2 (version): Update due to change in emacs.c.
 src/emacs.c <emacs_version>: Add a comment regarding msdos/mainmake.v2's
 dependency on the syntax of this declaration.

13 years agoxdisp.c: Add commentary about iterator geometry in R2L paragraphs.
Eli Zaretskii [Fri, 20 Aug 2010 14:31:38 +0000 (17:31 +0300)]
xdisp.c: Add commentary about iterator geometry in R2L paragraphs.

13 years agoFix mouse clicks, drag, and highlight in R2L lines.
Eli Zaretskii [Fri, 20 Aug 2010 14:19:39 +0000 (17:19 +0300)]
Fix mouse clicks, drag, and highlight in R2L lines.

 dispnew.c (buffer_posn_from_coords): Fix calculation of buffer
 position for R2L lines by mirroring the pixel position wrt the
 text are box.  Improve commentary.

13 years ago* image.c (imagemagick_clear_image): Remove debugging output.
Andreas Schwab [Fri, 20 Aug 2010 12:02:43 +0000 (14:02 +0200)]
* image.c (imagemagick_clear_image): Remove debugging output.

13 years agoMinor align-regexp fix.
Glenn Morris [Fri, 20 Aug 2010 07:33:06 +0000 (00:33 -0700)]
Minor align-regexp fix.

* lisp/align.el (align-regexp): Make group and spacing arguments use
the interactive defaults when non-interactive.  (Bug#6698)

13 years agoFix rmail-forward with non-sendmail sending function.
Glenn Morris [Fri, 20 Aug 2010 07:11:35 +0000 (00:11 -0700)]
Fix rmail-forward with non-sendmail sending function.

* lisp/mail/rmail.el (rmail-forward): Replace mail-text-start with its
expansion, so as not to need sendmail.
(mail-text-start): Remove declaration.
(rmail-retry-failure): Require sendmail.

13 years ago* objects.texi (Bool-Vector Type): Minor definition tweak (Bug#6878).
Chong Yidong [Thu, 19 Aug 2010 23:23:13 +0000 (19:23 -0400)]
* objects.texi (Bool-Vector Type): Minor definition tweak (Bug#6878).

13 years ago* lisp/files.el (locate-file-completion-table): Only list the .el and .elc
Stefan Monnier [Thu, 19 Aug 2010 21:21:21 +0000 (23:21 +0200)]
* lisp/files.el (locate-file-completion-table): Only list the .el and .elc
extensions if there's no other choice.

Fixes: debbugs:5955

13 years agont/addpm.c (add_registry): Create App Paths of type REG_EXPAND_SZ.
Juanma Barranquero [Thu, 19 Aug 2010 16:38:41 +0000 (18:38 +0200)]
nt/addpm.c (add_registry): Create App Paths of type REG_EXPAND_SZ.

13 years ago(set_frame_menubar): Remove call to undefined function.
Jason Rumney [Thu, 19 Aug 2010 15:53:08 +0000 (23:53 +0800)]
(set_frame_menubar): Remove call to undefined function.

13 years agoNew post-self-insert-hook.
Stefan Monnier [Thu, 19 Aug 2010 15:43:45 +0000 (17:43 +0200)]
New post-self-insert-hook.
* src/cmds.c (Vself_insert_face, Vself_insert_face_command): Remove.
(Qpost_self_insert_hook, Vpost_self_insert_hook): New vars.
(internal_self_insert): Run post-self-insert-hook rather than handle
self-insert-face.
(syms_of_cmds): Initialize the new vars.
* lisp/facemenu.el (facemenu-self-insert-data): New var.
(facemenu-post-self-insert-function, facemenu-set-self-insert-face): New funs.
(facemenu-add-face): Use them.

13 years ago(w32_wnd_proc): Don't check context before initializing.
Jason Rumney [Thu, 19 Aug 2010 14:51:09 +0000 (22:51 +0800)]
(w32_wnd_proc): Don't check context before initializing.

13 years ago* lisp/subr.el (read-key): Don't hide the menu-bar entries.
Stefan Monnier [Thu, 19 Aug 2010 14:37:31 +0000 (16:37 +0200)]
* lisp/subr.el (read-key): Don't hide the menu-bar entries.

Fixes: debbugs:6881

13 years ago* lisp/simple.el (blink-matching-open): Obey forward-sexp-function.
Stefan Monnier [Thu, 19 Aug 2010 09:37:40 +0000 (11:37 +0200)]
* lisp/simple.el (blink-matching-open): Obey forward-sexp-function.

13 years agoupstream merge
Joakim Verona [Thu, 19 Aug 2010 07:34:21 +0000 (09:34 +0200)]
upstream merge

13 years agosome minor cosmetic fixes in comments
Joakim Verona [Thu, 19 Aug 2010 07:29:27 +0000 (09:29 +0200)]
some minor cosmetic fixes in comments

13 years agofix some accidental whitespace changes
Joakim Verona [Thu, 19 Aug 2010 07:23:06 +0000 (09:23 +0200)]
fix some accidental whitespace changes

13 years ago* nsselect.m (nxatoms_of_nsselect): Use "Selection" and "Secondary".
Jan D [Thu, 19 Aug 2010 05:55:30 +0000 (07:55 +0200)]
* nsselect.m (nxatoms_of_nsselect): Use "Selection" and "Secondary".

13 years agoFix previous Org change.
Glenn Morris [Thu, 19 Aug 2010 03:45:46 +0000 (20:45 -0700)]
Fix previous Org change.
* org.el (org-outline-overlay-data, org-set-outline-overlay-data)
(org-save-outline-visibility): Move to org-macs.
* org-macs.el (org-outline-overlay-data, org-set-outline-overlay-data)
(org-save-outline-visibility): Move here from org.el.
(show-all): Autoload it.
* ob.el: Don't require org when compiling.

13 years agolisp/ChangeLog: Remove merge markers.
Juanma Barranquero [Wed, 18 Aug 2010 23:32:39 +0000 (01:32 +0200)]
lisp/ChangeLog: Remove merge markers.

13 years ago* lisp/simple.el (prog-mode-map): New var.
Stefan Monnier [Wed, 18 Aug 2010 23:25:36 +0000 (01:25 +0200)]
* lisp/simple.el (prog-mode-map): New var.
(prog-indent-sexp): New command.

13 years agoxterm.c (x_draw_bar_cursor): Fix last change.
Eli Zaretskii [Wed, 18 Aug 2010 19:06:11 +0000 (22:06 +0300)]
xterm.c (x_draw_bar_cursor): Fix last change.

13 years ago* progmodes/flymake.el (flymake-start-syntax-check-process): Use
Michael Albinus [Wed, 18 Aug 2010 18:24:52 +0000 (20:24 +0200)]
* progmodes/flymake.el (flymake-start-syntax-check-process): Use
`start-file-process' in order to let it run also on remote hosts.

13 years agobidi.c (bidi_level_of_next_char): Fix commentary regarding reordering of PDF.
Eli Zaretskii [Wed, 18 Aug 2010 16:54:08 +0000 (19:54 +0300)]
bidi.c (bidi_level_of_next_char): Fix commentary regarding reordering of PDF.

13 years agoFix display of bar cursor on right-to-left text.
Eli Zaretskii [Wed, 18 Aug 2010 16:42:06 +0000 (19:42 +0300)]
Fix display of bar cursor on right-to-left text.

 xterm.c (x_draw_bar_cursor):
 w32term.c (x_draw_bar_cursor): If the character under cursor is
 R2L, draw the bar cursor on its right rather than on its left.

13 years ago* lisp/progmodes/octave-mod.el (octave-mode-menu): Make toggle buttons.
Stefan Monnier [Wed, 18 Aug 2010 13:12:34 +0000 (15:12 +0200)]
* lisp/progmodes/octave-mod.el (octave-mode-menu): Make toggle buttons.

13 years agoReindent smie.el
Stefan Monnier [Wed, 18 Aug 2010 12:10:30 +0000 (14:10 +0200)]
Reindent smie.el

13 years ago* smie.el (smie-forward-sexp-command): Fix typo.
Stefan Monnier [Wed, 18 Aug 2010 12:03:57 +0000 (14:03 +0200)]
* smie.el (smie-forward-sexp-command): Fix typo.

13 years agomerge from trunk, no conflicts
Joakim Verona [Wed, 18 Aug 2010 11:11:01 +0000 (13:11 +0200)]
merge from trunk, no conflicts

13 years ago* lisp/progmodes/prolog.el (smie): Require.
Stefan Monnier [Wed, 18 Aug 2010 11:01:15 +0000 (13:01 +0200)]
* lisp/progmodes/prolog.el (smie): Require.

13 years agoTry and remove some of SMIE's black magic by generalizing some rules.
Stefan Monnier [Wed, 18 Aug 2010 10:57:48 +0000 (12:57 +0200)]
Try and remove some of SMIE's black magic by generalizing some rules.
* lisp/emacs-lisp/smie.el (smie-default-backward-token)
(smie-default-forward-token): Strip properties.
(smie-next-sexp): Be more careful with associative operators.
(smie-forward-sexp-command): Generalize.
(smie-backward-sexp-command): Simplify.
(smie-closer-alist): New var.
(smie-close-block): New command.
(smie-indent-debug-log): New var.
(smie-indent-offset-rule): Add a few more cases.
(smie-indent-column): New function.
(smie-indent-after-keyword): Use it.
(smie-indent-keyword): Use it.
Fix up the opener code's point position.
(smie-indent-comment): Only applies at BOL.
(smie-indent-debug): New command.

13 years agodocumentation changes
Joakim Verona [Wed, 18 Aug 2010 10:35:23 +0000 (12:35 +0200)]
documentation changes

13 years ago* lisp/emacs-lisp/autoload.el (make-autoload): Preload the macros's
Stefan Monnier [Wed, 18 Aug 2010 10:21:43 +0000 (12:21 +0200)]
* lisp/emacs-lisp/autoload.el (make-autoload): Preload the macros's
declarations that are useful before running the macro.
* src/eval.c (Fdefmacro): Only obey one declaration.

13 years ago* casefiddle.c (casify_region): Setup gl_state.
Stefan Monnier [Wed, 18 Aug 2010 09:27:53 +0000 (11:27 +0200)]
* casefiddle.c (casify_region): Setup gl_state.

13 years agominor cleanup
Joakim Verona [Wed, 18 Aug 2010 09:09:46 +0000 (11:09 +0200)]
minor cleanup

13 years agofiles.el: Add word-wrap as safe local variable.
Kenichi Handa [Wed, 18 Aug 2010 08:07:58 +0000 (17:07 +0900)]
files.el: Add word-wrap as safe local variable.

13 years ago* nsterm.m (ns_define_frame_cursor): Call x_update_cursor (Bug#6868).
Jan D [Wed, 18 Aug 2010 08:06:45 +0000 (10:06 +0200)]
* nsterm.m (ns_define_frame_cursor): Call x_update_cursor (Bug#6868).

13 years agocreate-animated-image: Don't add heuristic mask to image (Bug#6839).
Katsumi Yamaoka [Wed, 18 Aug 2010 07:45:14 +0000 (07:45 +0000)]
create-animated-image: Don't add heuristic mask to image (Bug#6839).

13 years agoAdd bug ref to placeholder NEWS entry.
Glenn Morris [Wed, 18 Aug 2010 06:54:26 +0000 (23:54 -0700)]
Add bug ref to placeholder NEWS entry.

13 years ago* gtkutil.c (update_frame_tool_bar): Literal stings are const char*.
Jan D [Wed, 18 Aug 2010 06:30:54 +0000 (08:30 +0200)]
* gtkutil.c (update_frame_tool_bar): Literal stings are const char*.

13 years agoUse CLIPBOARD and PRIMARY on NS (Bug#6677).
Jan D [Wed, 18 Aug 2010 06:16:55 +0000 (08:16 +0200)]
Use CLIPBOARD and PRIMARY on NS (Bug#6677).

* lisp/term/ns-win.el (ns-get-pasteboard, ns-set-pasteboard): Use
QCLIPBOARD instead of QPRIMARY (Bug#6677).

* src/nsselect.m (QCLIPBOARD, NXPrimaryPboard): Define.
(symbol_to_nsstring): Map QCLIPBOARD => NSGeneralPboard,
QPRIMARY => NXPrimaryPboard.
(ns_string_to_symbol): NSGeneralPboard => QCLIPBOARD,
NXPrimaryPboard => QPRIMARY.
(nxatoms_of_nsselect): NXPrimaryPboard = PrimarySelection,
NXSecondaryPboard = SecondarySelection.
(syms_of_nsselect): Intern QCLIPBOARD (Bug#6677).

13 years agoAdd NEWS placeholder.
Glenn Morris [Wed, 18 Aug 2010 02:48:28 +0000 (19:48 -0700)]
Add NEWS placeholder.

13 years agoFix some more Org `check-declare' issues.
Glenn Morris [Wed, 18 Aug 2010 02:44:25 +0000 (19:44 -0700)]
Fix some more Org `check-declare' issues.

* ob.el: Require org when compiling.
(org-save-outline-visibility): Remove macro declaration.
* ob-emacs-lisp.el: Require ob-comint when compiling, for macros.
Remove unnecessary/macro declarations.
* org-docview.el: Require doc-view when compiling.
(doc-view-goto-page): Autoload rather than declaring.
(doc-view-current-page): Remove macro declaration.

13 years agoFix typo in previous gnus-sum.el change.
Glenn Morris [Wed, 18 Aug 2010 02:38:44 +0000 (19:38 -0700)]
Fix typo in previous gnus-sum.el change.

13 years ago* lisp/woman.el (woman-translate): Case matters. (Bug#6849)
Glenn Morris [Wed, 18 Aug 2010 02:33:13 +0000 (19:33 -0700)]
* lisp/woman.el (woman-translate): Case matters.  (Bug#6849)

13 years ago* src/gtkutil.c (update_frame_tool_bar): Don't assume TOOL_BAR_ITEM_LABEL
Stefan Monnier [Tue, 17 Aug 2010 21:43:47 +0000 (23:43 +0200)]
* src/gtkutil.c (update_frame_tool_bar): Don't assume TOOL_BAR_ITEM_LABEL
is a string.

13 years agomerge from trunk
Joakim Verona [Tue, 17 Aug 2010 21:19:11 +0000 (23:19 +0200)]
merge from trunk

13 years ago* eval.c (Flet, Feval, Fapply, apply_lambda): Use SAFE_ALLOCA_LISP
Andreas Schwab [Tue, 17 Aug 2010 21:07:50 +0000 (23:07 +0200)]
* eval.c (Flet, Feval, Fapply, apply_lambda): Use SAFE_ALLOCA_LISP
instead of SAFE_ALLOCA.

13 years ago* nsfns.m (ns_frame_parm_handlers): Add a slot for the
Jan D [Tue, 17 Aug 2010 21:05:26 +0000 (23:05 +0200)]
* nsfns.m (ns_frame_parm_handlers): Add a slot for the
x_set_tool_bar_position handler.

13 years ago* lisp/emacs-lisp/lisp.el (up-list): Obey forward-sexp-function if set.
Stefan Monnier [Tue, 17 Aug 2010 20:18:40 +0000 (22:18 +0200)]
* lisp/emacs-lisp/lisp.el (up-list): Obey forward-sexp-function if set.

13 years agoFix bug #6796.
Eli Zaretskii [Tue, 17 Aug 2010 20:05:50 +0000 (23:05 +0300)]
Fix bug #6796.

 w32fns.c <w32_frame_parm_handlers>: Add a slot for the
 x_set_tool_bar_position handler, needed to support changes from
 2010-07-29T16:49:59Z!jan.h.d@swipnet.se for positioning the tool bar.