aboutsummaryrefslogtreecommitdiffstats
path: root/etc (follow)
Commit message (Collapse)AuthorAgeFilesLines
* * etc/tutorials/TUTORIAL.translators (Maintainer): Update the maintainer.Xue Fuqiao2013-08-022-1/+5
| | | | * lisp/mh-e/mh-e.el: Add a FIXME.
* etc/tutorials/TUTORIAL.es: Fix typos (bug#15000).Juanma Barranquero2013-08-022-2/+6
|
* NEWS fix.Xue Fuqiao2013-07-311-4/+9
|
* Fix for vc-ignore.Xue Fuqiao2013-07-301-1/+1
| | | | | | * vc/vc-hooks.el (vc-prefix-map): Add key binding for vc-ignore. * vc/vc-dir.el (vc-dir-mode-map): Change key binding for vc-dir-ignore.
* Merge from mainline.Xue Fuqiao2013-07-303-0/+24
|\
| * Keybinding fix for vc-dir.Xue Fuqiao2013-07-271-0/+5
| | | | | | | | | | * lisp/vc/vc-dir.el (vc-dir-mode-map): Add binding for vc-root-diff. * doc/emacs/maintaining.texi (VC Directory Commands): Mention `D' and `L' in vc-dir.
| * *** empty log message ***Richard M. Stallman2013-07-261-0/+16
| |
| * Add support for lexical variables to the debugger's `e' command.Stefan Monnier2013-07-261-0/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * lisp/emacs-lisp/debug.el (debug): Don't let-bind the debugger-outer-* vars, except for debugger-outer-match-data. (debugger-frame-number): Move check for "on a function call" from callers into it. Add `skip-base' argument. (debugger-frame, debugger-frame-clear): Simplify accordingly. (debugger-env-macro): Only reset the state stored in non-variables, i.e. current-buffer and match-data. (debugger-eval-expression): Rewrite using backtrace-eval. * lisp/subr.el (internal--called-interactively-p--get-frame): Remove. (called-interactively-p): * lisp/emacs-lisp/edebug.el (edebug--called-interactively-skip): Use the new `base' arg of backtrace-frame instead. * src/eval.c (set_specpdl_old_value): New function. (unbind_to): Minor simplification. (get_backtrace_frame): New function. (Fbacktrace_frame): Use it. Add `base' argument. (backtrace_eval_unrewind, Fbacktrace_eval): New functions. (syms_of_eval): Export backtrace-eval. * src/xterm.c (x_focus_changed): Simplify.
| * * etc/spook.lines: Additions (tiny change)Micah Anderson2013-07-252-0/+4
| | | | | | | | Fixes: debbugs:14658
* | Add vc-ignore.Xue Fuqiao2013-07-301-0/+6
|/ | | | | | | | | | | | | | | | | | | | * lisp/vc/vc.el (vc-ignore): New function. * lisp/vc/vc-svn.el (vc-svn-ignore): New function. * lisp/vc/vc-hg.el (vc-hg-ignore): New function. * lisp/vc/vc-git.el (vc-git-ignore): New function. * lisp/vc/vc-dir.el (vc-dir-mode-map): Add key binding for vc-dir-ignore (vc-dir-ignore): New function. * lisp/vc/vc-cvs.el (vc-cvs-ignore): New function. (cvs-append-to-ignore): Moved from pcvs.el. * lisp/vc/vc-bzr.el (vc-bzr-ignore): New function. * lisp/vc/pcvs.el (vc-cvs): Require 'vc-cvs.
* * etc/NEWS: Typo fix.Xue Fuqiao2013-07-251-2/+2
|
* * doc/misc/ido.texi: New file.Xue Fuqiao2013-07-251-3/+5
|
* * src/eval.c (Fprogn): Do not check that BODY is a proper list.Paul Eggert2013-07-241-8/+0
| | | | | | | | | This undoes the previous change. The check slows down the interpreter, and is not needed to prevent a crash. See <http://lists.gnu.org/archive/html/emacs-devel/2013-07/msg00693.html>. * doc/lispref/eval.texi (Special Forms): Mention 'lambda'. Also, say that non-well-formed expressions result in unspecified behavior, though Emacs will not crash.
* * eval.c (Fprogn): Check that BODY is a proper list.Paul Eggert2013-07-231-0/+8
|
* Fix typo.Michael Albinus2013-07-221-1/+2
|
* split-string takes a new arg TRIM that's a regexpRichard M. Stallman2013-07-191-0/+3
| | | | | | saying what to trim from the start and end of each substring. * subr.el (split-string): New arg TRIM.
* Stop cursor blink after blink-cursor-blinks (10), stop timers when not blinking.Jan Djärv2013-07-162-0/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * etc/NEWS: Document blink-cursor-blinks and blink timers stopped. * lisp/frame.el (blink-cursor-blinks): New defcustom. (blink-cursor-blinks-done): New defvar. (blink-cursor-start): Set blink-cursor-blinks-done to 1. (blink-cursor-timer-function): Check if number of blinks has been done on X and NS. (blink-cursor-suspend, blink-cursor-check): New defuns. * src/frame.c (Fhandle_focus_in, Fhandle_focus_out): New functions. (Fhandle_switch_frame): Call Fhandle_focus_in. (syms_of_frame): defsubr handle-focus-in/out. * src/keyboard.c (Qfocus_in, Qfocus_out): New static objects. (make_lispy_focus_in, make_lispy_focus_out): Declare and define. (kbd_buffer_get_event): For FOCUS_IN, make a focus_in event if no switch frame event is made. Check ! NILP (event->arg) if X11 (moved from xterm.c). Make focus_out event for FOCUS_OUT_EVENT if NS or X11 and there is a focused frame. (head_table): Add focus-in and focus-out. (keys_of_keyboard): Add focus-in and focus-out to Vspecial_event_map, bind to handle-focus-in/out. * src/nsterm.m (windowDidResignKey): If this is the focused frame, generate FOCUS_OUT_EVENT. * src/termhooks.h (enum event_kind): Add FOCUS_OUT_EVENT. * src/xterm.c (x_focus_changed): Always generate FOCUS_IN_EVENT. Set event->arg to Qt if switch-event shall be generated. Generate FOCUS_OUT_EVENT for FocusOut if this is the focused frame.
* * shell.el (explicit-bash-args): Remove obsolete hack for Bash 1.x.Paul Eggert2013-07-141-0/+7
| | | | The hack didn't work outside English locales anyway.
* lisp/desktop.el (desktop-restore-frames): Change default to t.Juanma Barranquero2013-07-151-2/+4
| | | | | | | | | | | | | | | | | | | | | | | | | (desktop-restore-in-current-display): Now offer more options. (desktop-restoring-reuses-frames): New customization option. (desktop--saved-states): Doc fix. (desktop-filter-parameters-alist): New variable, renamed and expanded from desktop--excluded-frame-parameters. (desktop--target-display): New variable. (desktop-switch-to-gui-p, desktop-switch-to-tty-p, desktop--filter-tty*) (desktop--filter-*-color, desktop--filter-minibuffer) (desktop--filter-restore-desktop-parm, desktop--filter-save-desktop-parm) (desktop-restore-in-original-display-p): New functions. (desktop--filter-frame-parms): Use new desktop-filter-parameters-alist. (desktop--save-minibuffer-frames): New function, inspired by a similar function from Martin Rudalics. (desktop--save-frames): Call it; play nice with desktop-globals-to-save. (desktop--restore-in-this-display-p): Remove. (desktop--find-frame): Rename from desktop--find-frame-in-display and add predicate argument. (desktop--make-full-frame): Remove, integrated into desktop--make-frame. (desktop--reuse-list): New variable. (desktop--select-frame, desktop--make-frame, desktop--sort-states): New functions. (desktop--restore-frames): Add support for "minibuffer-special" frames.
* Improve the documentation of prefer-utf-8 and related issues.Eli Zaretskii2013-07-132-0/+35
| | | | | | | | lisp/international/mule.el (define-coding-system): Doc fix. etc/NEWS: Document prefer-utf-8 coding-system and the new attributes :inhibit-null-byte-detection, :inhibit-iso-escape-detection, and :prefer-utf-8.
* * NEWS: Mention new value for ido-use-virtual-buffers.Leo Liu2013-07-132-0/+6
|
* * configure.ac: If with-file-notification=yes, if gfile not found,Glenn Morris2013-07-121-23/+23
| | | | | | go on to try inotify (not on MS Windows or Nextstep). * etc/NEWS: Copyedits.
* ChangeLog fixGlenn Morris2013-07-111-1/+1
|
* Timestamp fixes for undo.Paul Eggert2013-07-092-0/+11
| | | | | | | | | | | | | | | | | | | | | | | * doc/lispref/text.texi (Undo): Document (t . 0) and (t . -1) in buffer-undo-list. * etc/NEWS: Changes to visited-file-modtime, set-visited-file-modtime. * lisp/files.el (clear-visited-file-modtime): Move here from fileio.c. * src/atimer.c (schedule_atimer): * src/fileio.c (Ffile_newer_than_file_p): Minor cleanup: use EMACS_TIME_LT so that we can remove EMACS_TIME_GT. * src/buffer.c (buffer-undo-list): Document (t . 0) and (t . -1). * src/fileio.c (Fclear_visited_file_modtime): Move to lisp/files.el. (syms_of_fileio): Remove Sclear_visited_file_name. (Fvisited_file_modtime): Return -1, not (-1 ...), when the visited file doesn't exist; this avoids an ambiguity with negative timestamps. (Fset_visited_file_modtime): Accept -1 and 0 as time-list arg. * src/systime.h (make_emacs_time, invalid_emacs_time): Don't assume struct timespec layout; POSIX doesn't guarantee it. (EMACS_TIME_NE, EMACS_TIME_GT, EMACS_TIME_GE): Remove. * src/undo.c (record_first_change): Push (visited-file-modtime) onto undo list rather than reimplementing it by hand, incorrectly. Fixes: debbugs:14824
* * lisp/faces.el (tty-setup-hook): Declare the hook.Stefan Monnier2013-07-081-0/+2
|
* * NEWS: NS can be build with ImageMagick.Jan Djärv2013-07-082-0/+8
|
* * etc/NEWS: Tweak +++/--- descriptionGlenn Morris2013-07-061-4/+4
|
* etc/NEWS: Fix typos.Juanma Barranquero2013-07-061-3/+3
|
* lisp/simple.el (alternatives-define): New macro.Juanma Barranquero2013-07-062-0/+8
| | | | etc/NEWS: Document new "generic commands" support.
* Add multi-monitor support on W32.YAMAMOTO Mitsuharu2013-07-041-0/+8
|
* Add file-notify.el and related changes in Tramp.Michael Albinus2013-07-041-2/+10
|
* * lisp/buff-menu.el (Buffer-menu-multi-occur): Add args and move theJuri Linkov2013-07-041-0/+4
| | | | | | | | | call of `occur-read-primary-args' to interactive spec. * lisp/ibuffer.el (ibuffer-mode-map): Bind "M-s a C-o" to `ibuffer-do-occur' like in buff-menu.el. Fixes: debbugs:14673
* lisp/desktop.el: More fixes to frame restoration.Juanma Barranquero2013-07-011-1/+1
| | | | | | | | | | | | | (desktop-restore-frames): Rename from desktop-save-windows. (desktop-restore-in-current-display): New customization option. (desktop--excluded-frame-parameters): Add `font'. (desktop--save-frames): Rename from desktop--save-windows. (desktop--restore-in-this-display-p): New function. (desktop--make-full-frame): Remove unwanted width/height from full(width|height) frames. (desktop--restore-frames): Rename from desktop--restore-windows. Obey desktop-restore-current-display. Do not delete old frames or select a new frame unless we were able to restore at least one frame.
* Add `remember-notes' function to store random notes across EmacsMichal Nazarewicz2013-06-301-0/+8
| | | | | | | | | | | | | | | | | | | | | | | | restarts. * remember.el (remember-data-file): Add :set callback to affect notes buffer (if any). (remember-notes): New command. (remember-notes-buffer-name, bury-remember-notes-on-kill): New defcustoms for the `remember-notes' function. (remember-notes-save-and-bury-buffer): New command. (remember-notes-mode-map): New variable. (remember-mode): New minor mode. (remember-notes--kill-buffer-query): New function. * lisp/startup.el (initial-buffer-choice): Add notes to custom type. * src/buffer.c (FKill_buffer): Run `kill-buffer-query-functions' before checking whether buffer is modified. This lets `kill-buffer-query-functions' cancel killing of the buffer or save its content before `kill-buffer' asks user the "Buffer %s modified; kill anyway?" question. * remember.el (remember-append-to-file): Don't mix `find-buffer-visiting' and `get-file-buffer'. * lisp/files.el (find-file-noselect): Simplify conditional expression.
* Spelling fixes.Paul Eggert2013-06-301-1/+1
|
* Implement visual-order cursor motion.Eli Zaretskii2013-06-291-0/+7
| | | | | | | | | | | | | | | src/xdisp.c (Fmove_point_visually): New function. lisp/bindings.el (visual-order-cursor-movement): New defcustom. (right-char, left-char): Provide visual-order cursor motion by calling move-point-visually. Update the doc strings. doc/emacs/basic.texi (Moving Point): Document visual-order-cursor-movement and its effect on right-char and left-char. doc/lispref/display.texi (Bidirectional Display): Document move-point-visually. etc/NEWS: Document the new feature.
* New experimental feature to save&restore window and frame setup.Juanma Barranquero2013-06-272-0/+7
| | | | | | | | | | | | * etc/NEWS: Document new Desktop option `desktop-save-windows'. * lisp/desktop.el (desktop-save-windows): New defcustom. (desktop--saved-states): New var. (desktop--excluded-frame-parameters): New defconst. (desktop--filter-frame-parms, desktop--find-frame-in-display) (desktop--restore-windows, desktop--save-windows): New functions. (desktop-save): Call `desktop--save-windows'. (desktop-read): Call `desktop--restore-windows'.
* * NEWS: Mention new version of todo-mode.el and obsoleting andStephen Berman2013-06-272-3/+31
| | | | renaming of old version.
* Do not create locallisppath directories.Juanma Barranquero2013-06-272-0/+7
| | | | | | | * Makefile.in (install-arch-indep): Do not create directories passed with --enable-locallisppath. * etc/NEWS: Mention policy change with respect to locallisppath dirs.
* Implement a command and mode for displaying and editing cookiesLars Magne Ingebrigtsen2013-06-261-0/+3
|
* Mention ewwLars Magne Ingebrigtsen2013-06-251-0/+3
|
* Implement :max-width/:max-height for (ImageMagic) imagesLars Magne Ingebrigtsen2013-06-231-0/+3
| | | | | | | | | | | | * doc/lispref/display.texi (ImageMagick Images): Mention :max-width and :max-height. * lisp/net/shr.el (shr-rescale-image): Use the new :max-width/:max-height functionality. * src/image.c (compute_image_size): New function to implement :max-width and :max-height. (imagemagick_load_image): Use it.
* Add log2 support and make log10 obsolete for consistency.Paul Eggert2013-06-201-0/+1
| | | | | | | | | | * configure.ac (log2): Check for this function. * doc/lispref/numbers.texi (Math Functions): Remove obsolete function log10. * lisp/subr.el (log10): Move here from C code, and declare as obsolete. All uses of (log10 X) replaced with (log X 10). * src/floatfns.c (Flog) [HAVE_LOG2]: Use log2 if available and if the base is 2; this is more accurate. (Flog10): Move to Lisp (marked obsolete there).
* Fix typos in ChangeLogs.Juanma Barranquero2013-06-191-9/+9
|
* Convert symbol prettification into minor mode and global minor mode.Juanma Barranquero2013-06-192-4/+8
| | | | | | | | | | | | | | | | | | | | | | * etc/NEWS: Document new Prettify Symbols mode. * lisp/progmodes/prog-mode.el (prettify-symbols-alist): Rename from `prog-prettify-symbols', and make a local defvar instead of defcustom. (prettify-symbols--keywords): Rename from `prog-prettify-symbols-alist' and make a local defvar. (prettify-symbols--compose-symbol): Rename from `prog--prettify-font-lock-compose-symbol'. (prettify-symbols--make-keywords): Rename from `prog-prettify-font-lock-symbols-keywords' and simplify. (prog-prettify-install): Remove. (prettify-symbols-mode): New minor mode, based on `prog-prettify-install'. (turn-on-prettify-symbols-mode): New function. (global-prettify-symbols-mode): New globalized minor mode. * lisp/emacs-lisp/lisp-mode.el (lisp-mode-variables): * lisp/progmodes/cfengine.el (cfengine3-mode): * lisp/progmodes/perl-mode.el (perl-mode): Don't call `prog-prettify-install'; set `prettify-symbols-alist' instead.
* Spelling fixes.Paul Eggert2013-06-181-1/+1
|
* Implement new function `add-face-text-property'Lars Magne Ingebrigtsen2013-06-171-0/+3
| | | | | | | | | | | | * doc/lispref/text.texi (Changing Properties): Document `add-face-text-property'. * src/textprop.c (property_set_type): New enum. (add_properties): Allow appending/prepending text properties. (add_text_properties_1): Factored out of Fadd_text_properties. (Fadd_text_properties): Moved all the code into add_text_properties_1. (Fadd_face_text_property): New function that calls add_text_properties_1.
* * lisp/international/characters.el (standard-case-table): Set syntax of ?»Stefan Monnier2013-06-161-0/+3
| | | | and ?« to punctuation.
* etc/NEWS: Fix typos.Juanma Barranquero2013-06-161-8/+9
|
* NEWS fix.Xue Fuqiao2013-06-151-1/+1
|