aboutsummaryrefslogtreecommitdiffstats
path: root/etc (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
| * | * etc/NEWS: appt-add.Glenn Morris2010-06-141-0/+4
| | |
| * | * etc/tutorials/TUTORIAL.bg, etc/tutorials/TUTORIAL.es: Fix typos.Glenn Morris2010-06-123-2/+6
| | |
* | | * src/lread.c (read1): Phase out old-style backquotes a bit more.Stefan Monnier2010-06-161-0/+4
| | |
* | | Add sort option `list-colors-sort'. (Bug#6332)Juri Linkov2010-06-141-0/+3
| |/ |/| | | | | | | | | | | | | | | | | * lisp/facemenu.el (color-rgb-to-hsv): New function. (list-colors-sort): New defcustom. (list-colors-sort-key): New function. (list-colors-display): Doc fix. Sort list according to the option `list-colors-sort'. (list-colors-print): Add HSV values to `help-echo' property of RGB strings.
* | Make compressing the info files optional.Glenn Morris2010-06-101-3/+7
| | | | | | | | | | | | | | | | | | | | | | * configure.in (--without-compress-info): New option. (GZIP_INFO): New output variable. * Makefile.in (GZIP_INFO): New, set by configure. (install-arch-indep): Don't gzip info pages if GZIP_INFO is nil. Handle man pages in the same way. * etc/NEWS: Re-order installation section, and add new item.
* | * NEWS: Add notifications.el.Michael Albinus2010-06-092-0/+7
| |
* | Improve support for special markup in the VC commit message.Dan Nicolaescu2010-06-081-0/+5
| | | | | | | | | | | | | | * lisp/vc-mtn.el (vc-mtn-checkin): Add support for Author: and Date: markup. * lisp/vc-hg.el (vc-hg-checkin): Add support for Date:. * lisp/vc-git.el (vc-git-checkin): * lisp/vc-bzr.el (vc-bzr-checkin): Likewise.
* | vc-log-incoming/vc-log-outgoing fixes for Git.Dan Nicolaescu2010-06-051-0/+2
| | | | | | | | | | | | | | | | * lisp/vc-git.el (vc-git-log-view-mode): Fix font lock for incoming/outgoing logs. (vc-git-log-outgoing, vc-git-log-incoming): Use @{upstream} instead of vc-git-compute-remote. (vc-git-compute-remote): Remove.
* | vc-log-incoming/vc-log-outgoing improvements for Git.Dan Nicolaescu2010-06-031-0/+3
| | | | | | | | | | | | * lisp/vc-git.el (vc-git-log-outgoing): Use the same format as the short log. (vc-git-log-incoming): Likewise. Run "git fetch" before the log command.
* | Add bindings for vc-log-incoming and vc-log-outgoing.Dan Nicolaescu2010-06-031-0/+3
| | | | | | | | | | | | | | * lisp/vc-hooks.el (vc-prefix-map): Add bindings for vc-log-incoming and vc-log-outgoing. * lisp/vc-dir.el (vc-dir-menu-map): Add menu bindings for vc-log-incoming and vc-log-outgoing.
* | Merge from emacs-23Stefan Monnier2010-05-311-1/+1
|\ \ | |/
| * CEDET is not TODO any moreStefan Monnier2010-05-241-1/+1
| |
* | Add --parent-id argument to emacsclient.Chong Yidong2010-05-291-0/+4
| | | | | | | | | | | | | | | | | | | | | | * lib-src/emacsclient.c (longopts, decode_options, print_help_and_exit): New arg `-parent-id'. (main): Send parent-id to Emacs. * lisp/server.el (server-process-filter): Receive parent-id argument from emacsclient. (server-create-window-system-frame): New arg. Pass parent-id as frame parameter.
* | * etc/MACHINES: Remove some old information no longer of relevance.Glenn Morris2010-05-272-271/+48
| | | | | | | | Switch to outline-mode.
* | * etc/PROBLEMS: Remove some more obsolete information.Glenn Morris2010-05-271-130/+33
| | | | | | | | Also some re-filling.
* | Change delete-by-moving-to-trash so Lisp calls explicitly request trashing.Chong Yidong2010-05-271-6/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * src/fileio.c (Fdelete_file): Change meaning of optional arg to mean whether to trash. (internal_delete_file, Frename_file): Callers changed. (delete_by_moving_to_trash): Doc fix. (Fdelete_directory_internal): Don't move to trash. * src/callproc.c (delete_temp_file): * src/buffer.c (Fkill_buffer): Callers changed. * src/lisp.h: Update prototype. * lisp/diff.el (diff-sentinel): * lisp/epg.el (epg--make-temp-file, epg-decrypt-string) (epg-verify-string, epg-sign-string, epg-encrypt-string): * lisp/jka-compr.el (jka-compr-partial-uncompress) (jka-compr-call-process, jka-compr-write-region): * lisp/server.el (server-sentinel): Remove optional arg from delete-file, reverting 2010-05-03 change. * lisp/dired.el (dired-delete-file): New arg TRASH. (dired-internal-do-deletions): New arg TRASH. Use progress reporter. (dired-do-flagged-delete, dired-do-delete): Use trash. * lisp/files.el (delete-directory): New arg TRASH. * lisp/speedbar.el (speedbar-item-delete): Allow trashing. * lisp/net/ange-ftp.el (ange-ftp-del-tmp-name, ange-ftp-delete-file) (ange-ftp-rename-remote-to-remote) (ange-ftp-rename-local-to-remote) (ange-ftp-rename-remote-to-local, ange-ftp-load) (ange-ftp-compress, ange-ftp-uncompress): Remove optional arg from `delete-file'. (ange-ftp-delete-directory): Add optional arg to `delete-file', to allow trashing. * lisp/net/tramp-compat.el (tramp-compat-delete-file): Rewrite to handle new TRASH arg of `delete-file'. * lisp/net/tramp-fish.el (tramp-fish-handle-delete-directory) (tramp-fish-handle-delete-file) (tramp-fish-handle-make-symbolic-link) (tramp-fish-handle-process-file): Use null TRASH arg in `tramp-compat-delete-file' call. * lisp/net/tramp-ftp.el (tramp-ftp-file-name-handler): Use null TRASH arg in `tramp-compat-delete-file' call. * lisp/net/tramp-gvfs.el (tramp-gvfs-handle-delete-file): Rename arg. (tramp-gvfs-handle-write-region): Use null TRASH arg in `tramp-compat-delete-file' call. * lisp/net/tramp-imap.el (tramp-imap-handle-delete-file): Rename arg. (tramp-imap-do-copy-or-rename-file): Use null TRASH arg in `tramp-compat-delete-file' call. * lisp/net/tramp-smb.el (tramp-smb-handle-copy-file) (tramp-smb-handle-file-local-copy, tramp-smb-handle-rename-file) (tramp-smb-handle-write-region): Use null TRASH arg in tramp-compat-delete-file call. (tramp-smb-handle-delete-directory): Use tramp-compat-delete-file. (tramp-smb-handle-delete-file): Rename arg. * lisp/net/tramp.el (tramp-handle-delete-file): Change FORCE arg to TRASH. (tramp-handle-make-symbolic-link, tramp-handle-load) (tramp-do-copy-or-rename-file-via-buffer) (tramp-do-copy-or-rename-file-directly) (tramp-do-copy-or-rename-file-out-of-band) (tramp-handle-process-file, tramp-handle-call-process-region) (tramp-handle-shell-command, tramp-handle-file-local-copy) (tramp-handle-insert-file-contents, tramp-handle-write-region) (tramp-delete-temp-file-function): Use null TRASH arg in tramp-compat-delete-file call.
* | * etc/PROBLEMS: Remove some more old information.Glenn Morris2010-05-261-54/+2
| |
* | * etc/PROBLEMS: Remove old information no longer of relevance.Glenn Morris2010-05-262-401/+10
| |
* | Do not preprocess src/Makefile.in.Glenn Morris2010-05-262-49/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * configure.in: Do not preprocess src/Makefile.in. (cpp_undefs, CPP_NEED_TRADITIONAL): Remove. (AC_EGREP_CPP): Test no longer needed. * configure: Regenerate. * config.bat: Do not preprocess src/Makefile.in. * make-dist: No more Makefile.c files. * INSTALL, src/README: Makefiles are not preprocessed. * src/Makefile.in, src/autodeps.mk, src/deps.mk, src/ns.mk: Convert comments to Makefile format. * lib-src/Makefile.in (distclean): No more Makefile.c. * src/Makefile.in (bootstrap-clean): No more Makefile.c. * admin/notes/cpp: Remove file. * admin/quick-install-emacs (AVOID): No more Makefile.c files. * etc/PROBLEMS, etc/MACHINES: Remove details of cpp problems which can no longer occur.
* | Merge from emacs-23Stefan Monnier2010-05-242-2/+32
|\ \ | |/
| * * url-util.el (url-unhex-string): Don't accidentally decode as latin-1.Stefan Monnier2010-05-192-2/+32
| | | | | | | | | | * editfns.c (Fbyte_to_string): New function. * NEWS: Add sections for Emacs-23.3.
* | Mention multi-planes text-propertiesStefan Monnier2010-05-241-1/+8
| |
* | * isearch.el (isearch-update-post-hook): New hook.Mark A. Hershberger2010-05-211-0/+4
| | | | | | | | (isearch-update): Use the new hook. (Bug#6225)
* | * dired-x.el (dired-jump, dired-jump-other-window): Add argJuri Linkov2010-05-211-0/+5
| | | | | | | | | | | | | | | | FILE-NAME to read from the minibuffer when called interactively with prefix argument instead of using buffer-file-name. http://lists.gnu.org/archive/html/emacs-devel/2010-05/msg00534.html * dired.el: Update autoloads.
* | * etc/TODO: prog-mode updates.Glenn Morris2010-05-181-3/+3
| |
* | Add command `secrets-show-secrets'.Michael Albinus2010-05-181-1/+3
| |
* | Provide a simple generic indentation engine and use it for Prolog.Stefan Monnier2010-05-171-0/+2
| | | | | | | | | | | | | | | | * emacs-lisp/smie.el: New file. * progmodes/prolog.el (prolog-smie-op-levels) (prolog-smie-indent-rules): New var. (prolog-mode-variables): Use them to configure SMIE. (prolog-indent-line, prolog-indent-level): Remove.
* | Remove reference to CANNOT_EXEC, not used anymore.Dan Nicolaescu2010-05-151-2/+1
| |
* | Implement bidi-sensitive movement with arrow keys.Eli Zaretskii2010-05-151-0/+3
| | | | | | | | | | | | | | | | | | | | | | src/bidi.c (bidi_paragraph_init): Don't leave alone garbage values of bidi_it->paragraph_dir. Call bidi_initialize if needed. src/xdisp.c (Fcurrent_bidi_paragraph_direction): New function. (syms_of_xdisp): Defsubr it. src/cmds.c (Fforward_char, Fbackward_char): Doc fix. src/subr.el (right-arrow-command, left-arrow-command): New functions. src/bindings.el (global-map): Bind them to right and left arrow keys. etc/NEWS: Mention current-bidi-paragraph-direction
* | * eval.c (specbind): Disallow let-binding frame-local vars.Stefan Monnier2010-05-141-0/+1
| | | | | | | | Remove left-over duplicate test. Add comment.
* | * simple.el (prog-mode): New (abstract) major mode.Stefan Monnier2010-05-141-0/+1
| | | | | | | | | | * emacs-lisp/lisp-mode.el (emacs-lisp-mode, lisp-mode): Use it. * progmodes/sh-script.el (sh-mode): Remove redundant var assignment.
* | Allow the default completion to cycle.Stefan Monnier2010-05-111-0/+2
| | | | | | | | | | | | * minibuffer.el (completion-cycle-threshold): New custom var. (completion--do-completion): Use it. (minibuffer-complete): Use cycling if appropriate.
* | Fix typos and whitespace in ChangeLogs.Juanma Barranquero2010-05-111-3/+3
| |
* | SQL mode version 2.1Michael Mauger2010-05-091-0/+32
| | | | | | | | | | Redesigned product specific definition and handling. Includes many bug fixes and enhancements.
* | * minibuffer.el (completion-pcm-complete-word-inserts-delimiters):Stefan Monnier2010-05-091-2/+3
| | | | | | | | | | | | | | | | | | | | New custom variable. (completion-pcm--string->pattern): Use it. (completion-pcm--pattern->regex, completion-pcm--pattern->string): Make it handle any symbol as `any'. (completion-pcm--merge-completions): Extract common suffix for the new `prefix' symbol as well. (completion-substring--all-completions): Use the new `prefix' symbol.
* | Merge from emacs-23Stefan Monnier2010-05-086-171/+148
|\ \ | |/
| * Bump version to 23.2.emacs-23.2Chong Yidong2010-05-071-0/+4
| |
| * Bump version to 23.1.97.emacs-pretest-23.1.97Chong Yidong2010-05-031-8/+10
| |
| * Fix typos (Bug#6094). From Štěpán Němec.Chong Yidong2010-05-032-6/+6
| |
| * Add check for buggy version of GCC (Bug#6031).Chong Yidong2010-05-021-1/+1
| | | | | | | | | | | | * configure.in: Add check for buggy version of GCC (Bug#6031). * configure: Regenerate * etc/NEWS: Minor tweak to problem description.
| * * PROBLEMS: Document gcc-4.5 bug (Bug#6031).Chong Yidong2010-04-272-0/+15
| |
| * Remove --- and +++ lines from NEWS file.Chong Yidong2010-04-251-151/+99
| |
| * Document Emacs 23.2 changes.Chong Yidong2010-04-251-3/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * functions.texi (Obsolete Functions): Document set-advertised-calling-convention. * minibuf.texi (Basic Completion): Document completion-in-region. (Programmed Completion): Document completion-annotate-function. * commands.texi (Reading One Event): Document read-key. (Distinguish Interactive): Document KIND arg to called-interactively-p. Delete obsolete interactive-p. * elisp.texi (Top): Update node description. * misc.texi (Printing): Document htmlfontify-buffer.
| * Fix the entry about eshell's su and sudo commands. bug#6021Michael Albinus2010-04-251-1/+1
| |
| * HELLO: Adjust Burmese for Unicode 5.2 encoding.Kenichi Handa2010-04-232-2/+6
| |
| * Bump version to 23.1.96.emacs-pretest-23.1.96Chong Yidong2010-04-191-12/+12
| |
* | NEWS: Remove FUD from description of bidirectional editing.Eli Zaretskii2010-05-071-4/+4
| |
* | HELLO: Reorder Arabic greetings into logical order.Eli Zaretskii2010-05-072-2/+7
| |
* | Use define-minor-mode for less obvious cases.Stefan Monnier2010-05-041-0/+2
| | | | | | | | | | | | | | | | * emacs-lisp/easy-mmode.el (define-minor-mode): Add :variable keyword. * emacs-lisp/cl-macs.el (terminal-parameter, eq): Add setf method. * international/iso-ascii.el (iso-ascii-mode): * frame.el (auto-raise-mode, auto-lower-mode): * composite.el (global-auto-composition-mode): Use define-minor-mode.
* | Add optional arg to delete-file to force deletion (Bug#6070).Chong Yidong2010-05-031-0/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * eval.c (internal_condition_case_n): Rename from internal_condition_case_2. (internal_condition_case_2): New function. * xdisp.c (safe_call): Use internal_condition_case_n. * fileio.c (Fdelete_file, internal_delete_file): New arg FORCE. (internal_delete_file, Frename_file): Callers changed. * buffer.c (Fkill_buffer): * callproc.c (delete_temp_file): Callers changed (Bug#6070). * lisp.h: Update prototypes. * diff.el (diff-sentinel): * epg.el (epg--make-temp-file, epg-decrypt-string) (epg-verify-string, epg-sign-string, epg-encrypt-string): * jka-compr.el (jka-compr-partial-uncompress) (jka-compr-call-process, jka-compr-write-region, jka-compr-load): * server.el (server-sentinel): Use delete-file's new FORCE arg (Bug#6070).