- 01 Nov, 2012 1 commit
-
-
Jan Djärv authored
(EmacsFrameRealize): Add resize_cb as event handler. (EmacsFrameResize): Check if all is up to date before changing frame size. Fixes: debbugs:12733
-
- 02 Nov, 2012 6 commits
-
-
Glenn Morris authored
-
Eli Zaretskii authored
src/w32fns.c (CaptureStackBackTrace_proc): New typedef. (BACKTRACE_LIMIT_MAX): New macro. (w32_backtrace): New function. (emacs_abort): Use w32_backtrace when the user chooses not to attach a debugger. Update the text of the abort dialog.
-
Dmitry Antipov authored
* dispnew.c (Finternal_show_cursor, Finternal_show_cursor_p): Use decode_any_window. * fringe.c (Ffringe_bitmaps_at_pos): Likewise. * xdisp.c (Fformat_mode_line): Likewise. * font.c (Ffont_at): Use decode_live_window. * indent.c (Fcompute_motion, Fvertical_motion): Likewise. * window.c (decode_next_window_args): Likewise. (decode_any_window): Remove static. * window.h (decode_any_window): Add prototype. * lisp.h (CHECK_VALID_WINDOW, CHECK_LIVE_WINDOW): Move from here... * window.h: ...to here, redefine via WINDOW_VALID_P and WINDOW_LIVE_P, respectively.
-
Glenn Morris authored
-
Dmitry Antipov authored
* termhooks.h (struct input_event): Remove padding field. Adjust comment. * keyboard.c (event_to_kboard): Simplify because frame_or_window member is never cons for a long time. Adjust comment. (mark_kboards): Adjust because SELECTION_REQUEST_EVENT and SELECTION_CLEAR_EVENT has no Lisp_Objects to mark. Add comment. * xterm.c (handle_one_xevent): Do not initialize frame_or_window field of SELECTION_REQUEST_EVENT and SELECTION_CLEAR_EVENT.
-
Chong Yidong authored
-
- 01 Nov, 2012 5 commits
-
-
Eli Zaretskii authored
src/w32proc.c (getpgrp, setpgid): New functions. nt/inc/unistd.h (setpgid, getpgrp): Provide prototypes. nt/config.nt (GETPGRP_VOID): Define to 1.
-
Glenn Morris authored
-
Glenn Morris authored
* doc/misc/cl.texi: More copyedits, plus: (Time of Evaluation, Iteration): Add xref to Emacs Lisp manual. (Macro Bindings, Blocks and Exits): Acknowledge existence of lexical-binding. (Iteration): Mainly defer to doc of standard dolist, dotimes.
-
Stephen Berman authored
* play/gomoku.el (gomoku-display-statistics): Update mode line only if in Gomoku buffer; don't capitalize "won". Fixes: debbugs:12771
-
Glenn Morris authored
Replace "..." by @dots; car by @sc{car}, etc.
-
- 31 Oct, 2012 14 commits
-
-
Glenn Morris authored
-
Glenn Morris authored
* doc/misc/ert.texi (Introduction, The @code{should} Macro): Refer to "cl-assert" rather than "assert".
-
Glenn Morris authored
-
Glenn Morris authored
-
Glenn Morris authored
* doc/lispref/errors.texi (Standard Errors): * doc/lispref/loading.texi (Autoload): Update for cl-lib namespace changes.
-
Glenn Morris authored
* doc/lispref/modes.texi (Defining Minor Modes): "Generalized Variables" section is now in this manual rather than cl.texi.
-
Glenn Morris authored
* doc/lispref/eval.texi (Special Forms): No longer special forms: defmacro, defun, save-window-excursion, with-output-to-temp-buffer. * doc/lispref/functions.texi (Defining Functions): Defun is now a macro. Defalias is a function.
-
Paul Eggert authored
-
Paul Eggert authored
* callproc.c (setpgrp): Remove macro, as we now use setpgid and it is configured in conf_post.h. (Fcall_process): Don't invoke both setsid and setpgid; the former is enough, if it exists. * callproc.c (Fcall_process, child_setup): * process.c (create_process): Use setpgid. * conf_post.h (setpgid) [!HAVE_SETPGID]: New macro, which substitutes for the real thing. * dispnew.c (init_display): Initialize the foreground group if we are running a tty display. * emacs.c (main): Do not worry about setpgrp; init_display does it now. * lisp.h (init_foreground_group): New decl. * sysdep.c (inherited_pgroup): New static var. (init_foreground_group, tcsetpgrp_without_stopping) (narrow_foreground_group, widen_foreground_group): New functions. (init_sys_modes): Narrow foreground group. (reset_sys_modes): Widen foreground group. Fixes: debbugs:12697
-
Michael Albinus authored
-
Martin Rudalics authored
* window.el (quit-restore-window): If the window has been created on an existing frame and ended up as the sole window on that frame, do not delete it (Bug#12764). * minibuf.c (read_minibuf): Restore current buffer since choose_minibuf_frame calling Fset_frame_selected_window may change it (Bug#12766).
-
Glenn Morris authored
* doc/misc/cl.texi (Function Bindings): Update for cl-flet and cl-labels. (Obsolete Lexical Binding): Rename section from "Lexical Bindings". (Obsolete Macros): Rename section from "Obsolete Lexical Macros". Reword, and add details of flet and labels. * etc/NEWS: Related markup.
-
Stefan Monnier authored
Rename from sh--inside-arithmetic-expression, handle more cases. Fixes: debbugs:11263
-
Stefan Monnier authored
(sh-font-lock-open-heredoc): Use it. Fixes: debbugs:12770
-
- 30 Oct, 2012 13 commits
-
-
Glenn Morris authored
-
Jan Djärv authored
Fixes: debbugs:12733
-
Michael Albinus authored
-
Kenichi Handa authored
-
Kenichi Handa authored
font.c (Ffont_at): If WINDOW is specified and it is not displaying the current buffer, signal an error.
-
Glenn Morris authored
-
Glenn Morris authored
* lisp/emacs-lisp/cl-extra.el (cl-mapc): Add autoload cookie. Doc fix. * doc/misc/cl.texi (Mapping over Sequences): Mention cl-mapc naming oddity.
-
Glenn Morris authored
* doc/misc/cl.texi (Setf Extensions): Partially restore note about cl-getf, mainly moved to lispref/variables.texi. (Property Lists): Fix cl-getf typos. * doc/lispref/variables.texi (Generalized Variables): Fix typo.
-
Glenn Morris authored
Fixes: debbugs:12760 * doc/misc/cl.texi (Modify Macros): Update for cl-letf changes. (Obsolete Lexical Macros): Say a little more about letf/cl-letf. * lisp/emacs-lisp/cl.el (letf): Doc fix. * etc/NEWS: Related edit.
-
Chong Yidong authored
-
Daniel Colascione authored
-
Daniel Colascione authored
-
Chong Yidong authored
* frames.texi (Visibility of Frames): Document tty-top-frame. * loading.texi (Autoload): Document autoloadp, autoload-do-load. * symbols.texi (Symbol Plists): Document function-get.
-
- 29 Oct, 2012 1 commit
-
-
Chong Yidong authored
* dired.texi (Shell Commands in Dired): Document changes to the dired-do-async-shell-command.
-