1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-13 09:32:47 +00:00
emacs/lisp
Michael Albinus 2fe4b1254d Sync with Tramp 2.2.6-pre.
* net/tramp-cache.el (tramp-dump-connection-properties): Let-bind
  `print-length' and `print-level' to nil, in order to avoid
  truncation.  Reported by Christopher Schmidt
  <christopher@ristopher.com>.

* net/tramp-cmds.el (tramp-cleanup-connection): Delete also
process.

* net/tramp-compat.el (tramp-compat-condition-case-unless-debug):
New defmacro.
(tramp-compat-copy-directory): Add optional argument
COPY-CONTENTS.  It is not handled yet.

* net/tramp-ftp.el (tramp-disable-ange-ftp): Fix docstring.
(tramp-ftp-file-name-p): Simplify.

* net/tramp-gvfs.el (tramp-gvfs-handle-expand-file-name):
* net/tramp-gw.el (tramp-gw-open-connection): Add hop to
connection vector.

* net/tramp-sh.el (tramp-copy-size-limit): Fix docstring.
(tramp-methods): Do not use `tramp-password-end-of-line'.
(tramp-completion-function-alist-putty): Handle
UNIX case.
(tramp-remote-path): Add "/opt/bin", "/opt/sbin"
and "/opt/local/bin".
(tramp-do-file-attributes-with-stat)
(tramp-do-directory-files-and-attributes-with-stat)
Return uid and gid as real numbers.  They could run out of
integer range on cygwin.
(tramp-do-copy-or-rename-file-out-of-band): Better
trace format.
(tramp-sh-handle-expand-file-name): Handle hops.
(tramp-open-connection-setup-interactive-shell):
Use `tramp-cleanup'.  Move check for busyboxes ...
(tramp-find-shell): ... here.  Simplify
implementation.  Set "remote-shell" property also for alternative
shells.
(tramp-remote-coding-commands): Check "test -c
/dev/stdout".  If failing, a regular file would be written
otherwise.  Reported by
Dmitry Kurochkin <dmitry.kurochkin@gmail.com>.
(tramp-find-inline-encoding): Cache the coding
commands in the process cache.  Apply test command on the remote
side, if defined.
(tramp-find-inline-compress): Cache the compress
commands in the process cache.
(tramp-compute-multi-hops): Save
`tramp-default-proxies-alist'
when requested.  Handle hops.
(tramp-current-connection): New defvar.
(tramp-maybe-open-connection): Use
`tramp-cleanup'.  Throw
`suppress', if there was a failed connection
shortly before.  Handle user interrupt.  (Bug#10187)
(tramp-get-inline-compress,
tramp-get-inline-coding): Read
connection properties from the process cache.

* net/tramp-smb.el (tramp-smb-server-version)
(tramp-smb-wrong-passwd-regexp,
tramp-smb-actions-with-tar): New defconsts.
(tramp-smb-prompt): Extend for powershell prompt.
(tramp-smb-file-name-handler-alist): Add handlers for
`process-file', `shell-command' and
`start-file-process'.
(tramp-smb-winexe-program, tramp-smb-winexe-shell-command)
(tramp-smb-winexe-shell-command-switch): New
defcustoms.
(tramp-smb-file-name-p): Simplify.
(tramp-smb-action-with-tar,
tramp-smb-handle-process-file)
(tramp-smb-kill-winexe-function, tramp-smb-call-winexe)
(tramp-smb-shell-quote-argument): New defuns.
(tramp-smb-handle-copy-directory): Add
COPY-CONTENTS argument.
Implement using "tar".  By this, time-stamps are
preserved.
(tramp-smb-handle-copy-file): Handle also the case
of directories.
(tramp-smb-do-file-attributes-with-stat)
(tramp-smb-get-file-entries,
tramp-smb-get-cifs-capabilities): Use
`tramp-get-connection-buffer').
(tramp-smb-handle-rename-file): Use "rename", when source and
target are on the same share.
(tramp-smb-maybe-open-connection): Handle wrong passwords.  Use
`tramp-smb-server-version'.
(tramp-smb-wait-for-output): Remove prompt.

* net/tramp.el (top): Require 'cl.
(tramp-methods, tramp-rsh-end-of-line): Remove
`tramp-password-end-of-line' from docstring.
(tramp-save-ad-hoc-proxies): New defcustom.
(tramp-completion-function-alist): Adapt docstring.
(tramp-default-password-end-of-line): Remove defcustom.
(tramp-shell-prompt-pattern): Allow "[]" style
prompts.  (Bug#11065)
(tramp-user-regexp, tramp-file-name-regexp-unified)
(tramp-file-name-regexp-url): Extend regexp by hop
separator.
(tramp-postfix-hop-format,
tramp-postfix-hop-regexp) 
(tramp-remote-file-name-spec-regexp): New defconst.
(tramp-file-name-structure): Extend structure for
hops.
(tramp-get-method-parameter): Move up.
(tramp-file-name-p, tramp-dissect-file-name)
(with-parsed-tramp-file-name): Handle hops.
(tramp-file-name-hop): New defun.
(tramp-make-tramp-file-name): New optional arg HOP.
(tramp-message-show-progress-reporter-message):
New defvar.
(tramp-with-progress-reporter): Use it.  We cannot use
`tramp-message-show-message' here, because this
suppresses also error buffers.
(tramp-error-with-buffer): Suppress buffer view, if
`tramp-message-show-message' is nil.  Use
`tramp-get-connection-buffer'.
(tramp-cleanup): New defun.
(tramp-rfn-eshadow-update-overlay): Let-bind
`non-essential' to `t'.
(tramp-file-name-handler): If `debug-on-error' is
set, propagate an error unchanged.
(tramp-completion-handle-file-name-all-completions):
Handle hops.  Fix an error when called from ido.
(tramp-completion-dissect-file-name): Use better
local variable name.  Add hop to the vector.
(tramp-handle-insert-file-contents): Use
progress-reporter for the whole scenario.
(tramp-action-password): Let-bind
`enable-recursive-minibuffers' to `t'.
(tramp-check-for-regexp): Simplify search.
(tramp-enter-password): Remove it.  Move
implementation ...
(tramp-action-password): ... here.
(tramp-mode-string-to-int, tramp-local-host-p)
(tramp-make-tramp-temp-file, tramp-read-passwd)
(tramp-clear-passwd, tramp-time-less-p,
tramp-time-diff): Set tramp-autoload cookie.

* net/trampver.el: Update release number.

* net/tramp.el (tramp-set-completion-function): Fix
docstring.
(tramp-parse-group, tramp-parse-file)
(tramp-parse-shostkeys-sknownhosts): New defuns.
(tramp-parse-rhosts, tramp-parse-rhosts-group, tramp-parse-shosts)
(tramp-parse-shosts-group, tramp-parse-sconfig)
(tramp-parse-sconfig-group, tramp-parse-shostkeys)
(tramp-parse-sknownhosts, tramp-parse-hosts)
(tramp-parse-hosts-group, tramp-parse-passwd,
tramp-parse-netrc): Use them.
(tramp-parse-passwd-group, tramp-parse-netrc-group)
(tramp-parse-putty-group): Don't narrow.
(tramp-parse-putty): Make a loop.
(tramp-file-name-handler): Catch the `suppress'
signal.
2012-06-11 12:30:07 +02:00
..
calc * calc/calc-units.el (math-consistent-units-p): Accept unit systems 2012-05-19 09:59:47 -05:00
calendar icalendar / icalendar-tests: Fix Bug#11473 -- unescape commas in timezone specs 2012-06-08 19:34:09 +02:00
cedet Bump version to 24.1. 2012-06-01 17:51:00 +08:00
emacs-lisp * lisp/emacs-lisp/pcase.el (pcase-UPAT, pcase-QPAT): New edebug specs. 2012-06-10 20:46:21 -04:00
emulation Face cleanups. Remove some uses of old-style face spec and :bold/:italic. 2012-06-09 00:39:49 +08:00
erc Face cleanups. Remove some uses of old-style face spec and :bold/:italic. 2012-06-09 00:39:49 +08:00
eshell Face cleanups. Remove some uses of old-style face spec and :bold/:italic. 2012-06-09 00:39:49 +08:00
gnus Merge bugfixes done in Gnus trunk 2012-06-10 23:27:32 +00:00
international Cleanup cl-macs namespace. Add macro helpers in macroexp.el. 2012-06-07 15:25:48 -04:00
language Remove no-byte-compile setting from some lisp/language files. 2012-05-07 21:50:17 -04:00
mail Merge from emacs-24; up to 2012-04-25T15:23:19Z!sdl.web@gmail.com 2012-06-10 21:20:58 +08:00
mh-e Bump version to 24.1. 2012-06-01 17:51:00 +08:00
net Sync with Tramp 2.2.6-pre. 2012-06-11 12:30:07 +02:00
nxml Face cleanups. Remove some uses of old-style face spec and :bold/:italic. 2012-06-09 00:39:49 +08:00
obsolete Make ledit.el obsolete. 2012-06-05 13:47:27 -04:00
org Remove incorrect uses of "modeline". 2012-06-02 18:56:09 +08:00
play Face cleanups. Remove some uses of old-style face spec and :bold/:italic. 2012-06-09 00:39:49 +08:00
progmodes Face cleanups. Remove some uses of old-style face spec and :bold/:italic. 2012-06-09 00:39:49 +08:00
term Remove incorrect uses of "modeline". 2012-06-02 18:56:09 +08:00
textmodes Face cleanups. Remove some uses of old-style face spec and :bold/:italic. 2012-06-09 00:39:49 +08:00
url Bump version to 24.1. 2012-06-01 17:51:00 +08:00
vc Find rcs2log in the source-directory when running uninstalled 2012-06-05 21:28:08 -04:00
.gitignore * lisp/.gitignore: Remove arch-tag. 2011-02-17 21:21:57 -08:00
abbrev.el Spelling fixes. 2012-04-22 22:44:49 -07:00
align.el Add 2012 to FSF copyright years for Emacs files (do not merge to trunk) 2012-01-10 23:52:35 -08:00
allout-widgets.el Merge from emacs-24; up to 2012-04-25T15:23:19Z!sdl.web@gmail.com 2012-06-10 21:20:58 +08:00
allout.el Move define-obsolete-variable-alias before the var's definition. 2012-05-12 23:05:06 -04:00
ansi-color.el Remove incorrect uses of "modeline". 2012-06-02 18:56:09 +08:00
apropos.el Use proper faces in apropos.el. 2012-04-23 23:38:48 +08:00
arc-mode.el Fix minor Y10k bugs. 2012-05-03 23:13:18 -07:00
array.el Add 2012 to FSF copyright years for Emacs files (do not merge to trunk) 2012-01-10 23:52:35 -08:00
autoarg.el Add 2012 to FSF copyright years for Emacs files (do not merge to trunk) 2012-01-10 23:52:35 -08:00
autoinsert.el Fix minor Y10k bugs. 2012-05-03 23:13:18 -07:00
autorevert.el Tweaks to Customize interface. Set custom-reset-button-menu to t. 2012-04-22 21:58:00 +08:00
avoid.el lisp/*: Add declarations, remove unused bindings, mark unused args. 2012-04-19 19:20:26 +02:00
battery.el Merge from emacs-24 branch 2012-04-20 16:48:50 +08:00
bindings.el * lisp/bindings.el (global-map): Bind XF86Forward to next-buffer and 2012-06-08 00:23:26 -04:00
bookmark.el Move define-obsolete-variable-alias before the var's definition. 2012-05-12 23:05:06 -04:00
bs.el Remove some `toggle-read-only' warnings. 2012-04-19 18:50:07 +02:00
buff-menu.el Move define-obsolete-variable-alias before the var's definition. 2012-05-12 23:05:06 -04:00
button.el Updates to Display chapter of Lisp manual. 2012-03-25 15:58:59 +08:00
calculator.el Remove incorrect uses of "modeline". 2012-06-02 18:56:09 +08:00
case-table.el Add 2012 to FSF copyright years for Emacs files (do not merge to trunk) 2012-01-10 23:52:35 -08:00
cdl.el Add 2012 to FSF copyright years for Emacs files (do not merge to trunk) 2012-01-10 23:52:35 -08:00
ChangeLog Sync with Tramp 2.2.6-pre. 2012-06-11 12:30:07 +02:00
ChangeLog.1 Add 2012 to FSF copyright years for Emacs files (do not merge to trunk) 2012-01-10 23:52:35 -08:00
ChangeLog.2 Add 2012 to FSF copyright years for Emacs files (do not merge to trunk) 2012-01-10 23:52:35 -08:00
ChangeLog.3 Add 2012 to FSF copyright years for Emacs files (do not merge to trunk) 2012-01-10 23:52:35 -08:00
ChangeLog.4 Add 2012 to FSF copyright years for Emacs files (do not merge to trunk) 2012-01-10 23:52:35 -08:00
ChangeLog.5 ChangeLog fixes 2012-02-24 14:32:46 -05:00
ChangeLog.6 Fix ChangeLog typos. 2012-04-15 04:59:30 +02:00
ChangeLog.7 ChangeLog fixes 2012-02-24 14:32:46 -05:00
ChangeLog.8 ChangeLog fixes 2012-02-24 14:32:46 -05:00
ChangeLog.9 Spelling fixes. 2012-05-28 23:16:49 -07:00
ChangeLog.10 Add 2012 to FSF copyright years for Emacs files (do not merge to trunk) 2012-01-10 23:52:35 -08:00
ChangeLog.11 Fix ChangeLog typos. 2012-04-15 04:59:30 +02:00
ChangeLog.12 Fix ChangeLog typos. 2012-04-15 04:59:30 +02:00
ChangeLog.13 Add 2012 to FSF copyright years for Emacs files (do not merge to trunk) 2012-01-10 23:52:35 -08:00
ChangeLog.14 Fix last ChangeLog + Andreas Politz has signed paperwork. 2012-03-21 14:27:05 -04:00
ChangeLog.15 Spelling fixes. 2012-05-28 23:16:49 -07:00
chistory.el Add 2012 to FSF copyright years for Emacs files (do not merge to trunk) 2012-01-10 23:52:35 -08:00
cmuscheme.el Add 2012 to FSF copyright years for Emacs files (do not merge to trunk) 2012-01-10 23:52:35 -08:00
color.el Fix typo in color.el. 2012-04-05 09:29:19 +02:00
comint.el * lisp/isearch.el (isearch-search-fun-default): New function. 2012-05-29 12:09:38 +03:00
completion.el Add new error and function `user-error'. 2012-05-04 19:16:47 -04:00
composite.el Fix previous change for Bug#6988. 2012-02-02 18:07:29 +09:00
COPYING
cus-dep.el Add 2012 to FSF copyright years for Emacs files (do not merge to trunk) 2012-01-10 23:52:35 -08:00
cus-edit.el Merge from emacs-24; up to 2012-04-25T15:23:19Z!sdl.web@gmail.com 2012-06-10 21:20:58 +08:00
cus-face.el Add 2012 to FSF copyright years for Emacs files (do not merge to trunk) 2012-01-10 23:52:35 -08:00
cus-start.el tool-bar-style doc fixes 2012-06-03 16:28:17 -07:00
cus-theme.el Fix interaction of load-theme with cust-theme.el. 2012-03-25 22:05:51 +08:00
custom.el * lisp/emacs-lisp/lisp-mode.el (doc-string-elt): Move those properties to 2012-05-17 21:46:20 -04:00
dabbrev.el * lisp/dabbrev.el (dabbrev-expand): Make "no expansion found" a user-error. 2012-05-11 13:31:30 -04:00
delim-col.el Add 2012 to FSF copyright years for Emacs files (do not merge to trunk) 2012-01-10 23:52:35 -08:00
delsel.el Add 2012 to FSF copyright years for Emacs files (do not merge to trunk) 2012-01-10 23:52:35 -08:00
descr-text.el Mention in "C-u C-x =" display how to insert the character w/o input methods. 2012-06-08 11:44:45 +03:00
desktop.el Merge from emacs-24; up to 2012-04-24T21:47:24Z!michael.albinus@gmx.de 2012-05-31 14:08:06 +08:00
dframe.el Remove incorrect uses of "modeline". 2012-06-02 18:56:09 +08:00
dired-aux.el * lisp/dired-aux.el (dired-mark-read-string): Doc fix. 2012-04-16 21:52:00 -04:00
dired-x.el Remove incorrect uses of "modeline". 2012-06-02 18:56:09 +08:00
dired.el Remove incorrect uses of "modeline". 2012-06-02 18:56:09 +08:00
dirtrack.el Move define-obsolete-variable-alias before the var's definition. 2012-05-12 23:05:06 -04:00
disp-table.el Add 2012 to FSF copyright years for Emacs files (do not merge to trunk) 2012-01-10 23:52:35 -08:00
dnd.el Add 2012 to FSF copyright years for Emacs files (do not merge to trunk) 2012-01-10 23:52:35 -08:00
doc-view.el Replace lexical-let by lexical-binding (except Gnus, CEDET, ERT). 2012-04-26 08:43:28 -04:00
dos-fns.el Move define-obsolete-variable-alias before the var's definition. 2012-05-12 23:05:06 -04:00
dos-vars.el Add 2012 to FSF copyright years for Emacs files (do not merge to trunk) 2012-01-10 23:52:35 -08:00
dos-w32.el Convert more defvars to defcustoms. 2012-05-04 13:14:14 +08:00
double.el Add 2012 to FSF copyright years for Emacs files (do not merge to trunk) 2012-01-10 23:52:35 -08:00
dynamic-setting.el Fix dynamic font settings interaction with Custom Themes. 2012-02-01 16:13:02 +08:00
ebuff-menu.el * ebuff-menu.el (electric-buffer-list): Preserve header line. 2012-06-09 22:33:44 +08:00
echistory.el Add 2012 to FSF copyright years for Emacs files (do not merge to trunk) 2012-01-10 23:52:35 -08:00
edmacro.el Add 2012 to FSF copyright years for Emacs files (do not merge to trunk) 2012-01-10 23:52:35 -08:00
ehelp.el Add 2012 to FSF copyright years for Emacs files (do not merge to trunk) 2012-01-10 23:52:35 -08:00
electric.el * lisp/electric.el (electric-indent-post-self-insert-function): Check that 2012-04-19 18:02:25 -04:00
elide-head.el Add 2012 to FSF copyright years for Emacs files (do not merge to trunk) 2012-01-10 23:52:35 -08:00
emacs-lock.el Move define-obsolete-variable-alias before the var's definition. 2012-05-12 23:05:06 -04:00
env.el Add 2012 to FSF copyright years for Emacs files (do not merge to trunk) 2012-01-10 23:52:35 -08:00
epa-dired.el Add 2012 to FSF copyright years for Emacs files (do not merge to trunk) 2012-01-10 23:52:35 -08:00
epa-file.el Add 2012 to FSF copyright years for Emacs files (do not merge to trunk) 2012-01-10 23:52:35 -08:00
epa-hook.el Add 2012 to FSF copyright years for Emacs files (do not merge to trunk) 2012-01-10 23:52:35 -08:00
epa-mail.el Make epa-mail-encrypt cope with read-only text. 2012-03-10 03:43:27 -05:00
epa.el Face cleanups. Remove some uses of old-style face spec and :bold/:italic. 2012-06-09 00:39:49 +08:00
epg-config.el Tweaks to Customize interface. Set custom-reset-button-menu to t. 2012-04-22 21:58:00 +08:00
epg.el Fix race condition in epg.el compat code. 2012-01-14 15:09:15 +08:00
expand.el Add 2012 to FSF copyright years for Emacs files (do not merge to trunk) 2012-01-10 23:52:35 -08:00
ezimage.el Add 2012 to FSF copyright years for Emacs files (do not merge to trunk) 2012-01-10 23:52:35 -08:00
face-remap.el Doc improvements for face remapping. 2012-06-09 14:26:46 +08:00
facemenu.el Convert more defvars to defcustoms. 2012-05-04 13:14:14 +08:00
faces.el Face cleanups. Remove some uses of old-style face spec and :bold/:italic. 2012-06-09 00:39:49 +08:00
ffap.el Cleanups and improvements for FFAP and URL. 2012-05-10 14:27:12 +08:00
filecache.el Add 2012 to FSF copyright years for Emacs files (do not merge to trunk) 2012-01-10 23:52:35 -08:00
files-x.el Remove defining user variables via * in docstring. 2012-04-09 20:36:01 +08:00
files.el Clean up scoping rule of predefined single-word vars. 2012-06-08 09:18:26 -04:00
filesets.el Standardize possessive apostrophe usage in manuals, docs, and comments 2012-02-28 00:17:21 -08:00
find-cmd.el Add 2012 to FSF copyright years for Emacs files (do not merge to trunk) 2012-01-10 23:52:35 -08:00
find-dired.el find-ls-option doc fixes (bug#10262) 2012-01-12 21:32:07 -05:00
find-file.el Convert more defvars to defcustoms. 2012-05-04 13:14:14 +08:00
find-lisp.el Add 2012 to FSF copyright years for Emacs files (do not merge to trunk) 2012-01-10 23:52:35 -08:00
finder.el Add 2012 to FSF copyright years for Emacs files (do not merge to trunk) 2012-01-10 23:52:35 -08:00
flow-ctrl.el Add 2012 to FSF copyright years for Emacs files (do not merge to trunk) 2012-01-10 23:52:35 -08:00
foldout.el Remove incorrect uses of "modeline". 2012-06-02 18:56:09 +08:00
follow.el Convert more defvars to defcustoms. 2012-05-04 13:14:14 +08:00
font-core.el * font-lock.el (font-lock-specified-p): Rename from font-lock-spec-present. 2012-02-27 10:34:12 +08:00
font-lock.el Face cleanups. Remove some uses of old-style face spec and :bold/:italic. 2012-06-09 00:39:49 +08:00
format-spec.el Add 2012 to FSF copyright years for Emacs files (do not merge to trunk) 2012-01-10 23:52:35 -08:00
format.el Add 2012 to FSF copyright years for Emacs files (do not merge to trunk) 2012-01-10 23:52:35 -08:00
forms.el Remove incorrect uses of "modeline". 2012-06-02 18:56:09 +08:00
frame.el Remove incorrect uses of "modeline". 2012-06-02 18:56:09 +08:00
fringe.el Add 2012 to FSF copyright years for Emacs files (do not merge to trunk) 2012-01-10 23:52:35 -08:00
generic-x.el Add 2012 to FSF copyright years for Emacs files (do not merge to trunk) 2012-01-10 23:52:35 -08:00
gs.el Add 2012 to FSF copyright years for Emacs files (do not merge to trunk) 2012-01-10 23:52:35 -08:00
help-at-pt.el Add 2012 to FSF copyright years for Emacs files (do not merge to trunk) 2012-01-10 23:52:35 -08:00
help-fns.el * help-fns.el (describe-function-1): Clarify description of remapping. 2012-02-26 17:24:13 +08:00
help-macro.el In make-help-screen make original minor-mode-map-alist temporarily visible. 2012-01-20 09:12:35 +01:00
help-mode.el * lisp/bindings.el (global-map): Bind XF86Forward to next-buffer and 2012-06-08 00:23:26 -04:00
help.el Remove incorrect uses of "modeline". 2012-06-02 18:56:09 +08:00
hex-util.el Add 2012 to FSF copyright years for Emacs files (do not merge to trunk) 2012-01-10 23:52:35 -08:00
hexl.el * lisp/isearch.el (isearch-search-fun-default): New function. 2012-05-29 12:09:38 +03:00
hfy-cmap.el Add 2012 to FSF copyright years for Emacs files (do not merge to trunk) 2012-01-10 23:52:35 -08:00
hi-lock.el * lisp/hi-lock.el (hi-lock-face-defaults): Move obsolete before definition. 2012-05-21 00:33:54 -04:00
hilit-chg.el Add 2012 to FSF copyright years for Emacs files (do not merge to trunk) 2012-01-10 23:52:35 -08:00
hippie-exp.el Add 2012 to FSF copyright years for Emacs files (do not merge to trunk) 2012-01-10 23:52:35 -08:00
hl-line.el Add 2012 to FSF copyright years for Emacs files (do not merge to trunk) 2012-01-10 23:52:35 -08:00
htmlfontify.el * htmlfontify.el: Add support for code block fontification 2012-03-17 22:03:54 +08:00
ibuf-ext.el * lisp/ibuf-ext.el (ibuffer-diff-buffer-with-file-1): Avoid buffer 2012-04-30 19:57:47 +08:00
ibuf-macs.el * lisp/emacs-lisp/lisp-mode.el (doc-string-elt): Move those properties to 2012-05-17 21:46:20 -04:00
ibuffer.el Auto-commit of loaddefs files. 2012-05-01 06:20:43 -04:00
icomplete.el * lisp/icomplete.el (icomplete-completions): Replace last fix. 2012-02-23 10:36:07 -05:00
ido.el Face cleanups. Remove some uses of old-style face spec and :bold/:italic. 2012-06-09 00:39:49 +08:00
ielm.el Add 2012 to FSF copyright years for Emacs files (do not merge to trunk) 2012-01-10 23:52:35 -08:00
iimage.el Minor-mode doc fixes for ARG behavior 2012-02-07 21:12:24 -05:00
image-dired.el Add 2012 to FSF copyright years for Emacs files (do not merge to trunk) 2012-01-10 23:52:35 -08:00
image-file.el Add 2012 to FSF copyright years for Emacs files (do not merge to trunk) 2012-01-10 23:52:35 -08:00
image-mode.el Spelling fixes. 2012-05-28 23:16:49 -07:00
image.el Give ImageMagick lowest priority in image-type-file-name-regexps. 2012-06-11 18:16:47 +08:00
imenu.el * lisp/imenu.el: Misc cleanup. Make docstrings out of comments. 2012-05-08 10:19:08 -04:00
indent.el Add 2012 to FSF copyright years for Emacs files (do not merge to trunk) 2012-01-10 23:52:35 -08:00
info-look.el Add 2012 to FSF copyright years for Emacs files (do not merge to trunk) 2012-01-10 23:52:35 -08:00
info-xref.el Add 2012 to FSF copyright years for Emacs files (do not merge to trunk) 2012-01-10 23:52:35 -08:00
info.el * lisp/bindings.el (global-map): Bind XF86Forward to next-buffer and 2012-06-08 00:23:26 -04:00
informat.el Add 2012 to FSF copyright years for Emacs files (do not merge to trunk) 2012-01-10 23:52:35 -08:00
isearch.el * lisp/isearch.el (isearch-mode-map): Bind M-s _' to isearch-toggle-symbol'. 2012-05-29 12:46:06 +03:00
isearchb.el Add 2012 to FSF copyright years for Emacs files (do not merge to trunk) 2012-01-10 23:52:35 -08:00
iswitchb.el * iswitchb.el (iswitchb-all-frames): Fix last change. 2012-05-04 14:02:23 +08:00
jit-lock.el Add 2012 to FSF copyright years for Emacs files (do not merge to trunk) 2012-01-10 23:52:35 -08:00
jka-cmpr-hook.el Support Lzip and LZMA compressed files. 2012-01-29 19:41:43 +02:00
jka-compr.el * jka-compr.el (jka-compr-call-process): Apply 2012-03-02 16:29:28 +01:00
json.el Add 2012 to FSF copyright years for Emacs files (do not merge to trunk) 2012-01-10 23:52:35 -08:00
kermit.el Add 2012 to FSF copyright years for Emacs files (do not merge to trunk) 2012-01-10 23:52:35 -08:00
kmacro.el Use set-temporary-overlay-map. 2012-05-04 22:50:20 -04:00
ldefs-boot.el Regenerate ldefs-boot.el. 2012-06-10 15:41:46 +08:00
linum.el Add 2012 to FSF copyright years for Emacs files (do not merge to trunk) 2012-01-10 23:52:35 -08:00
loadhist.el Move define-obsolete-variable-alias before the var's definition. 2012-05-12 23:05:06 -04:00
loadup.el * lisp/emacs-lisp/byte-run.el (defmacro, defun): Move from C. 2012-05-29 23:59:42 -04:00
locate.el Add 2012 to FSF copyright years for Emacs files (do not merge to trunk) 2012-01-10 23:52:35 -08:00
longlines.el Add 2012 to FSF copyright years for Emacs files (do not merge to trunk) 2012-01-10 23:52:35 -08:00
lpr.el Add 2012 to FSF copyright years for Emacs files (do not merge to trunk) 2012-01-10 23:52:35 -08:00
ls-lisp.el Fix bug #4673 with Dired when `stat' fails for ".." or other files. 2012-02-07 19:44:36 +02:00
macros.el Add 2012 to FSF copyright years for Emacs files (do not merge to trunk) 2012-01-10 23:52:35 -08:00
Makefile.in * Makefile.in (BIG_STACK_DEPTH): Enlarge to 2200. 2012-06-09 19:03:43 +02:00
makefile.w32-in Fix parallel bootstrap build in lisp/ on MS-Windows. 2012-06-09 14:53:31 +03:00
makesum.el Add 2012 to FSF copyright years for Emacs files (do not merge to trunk) 2012-01-10 23:52:35 -08:00
man.el Cosmetic fix for Man-unindent. 2012-05-06 12:19:11 +08:00
master.el Add 2012 to FSF copyright years for Emacs files (do not merge to trunk) 2012-01-10 23:52:35 -08:00
mb-depth.el Add 2012 to FSF copyright years for Emacs files (do not merge to trunk) 2012-01-10 23:52:35 -08:00
md4.el Add 2012 to FSF copyright years for Emacs files (do not merge to trunk) 2012-01-10 23:52:35 -08:00
menu-bar.el Add "How to Report a Bug" to Help menu 2012-05-21 20:31:34 -07:00
midnight.el Add 2012 to FSF copyright years for Emacs files (do not merge to trunk) 2012-01-10 23:52:35 -08:00
minibuf-eldef.el Remove * characters from the front of variable docstrings. 2012-04-09 21:05:48 +08:00
minibuffer.el * lisp/minibuffer.el (completion--sifn-requote): Fix last change. 2012-05-15 21:57:20 -04:00
misc.el Record and display absolute path of DLLs loaded (bug#10424). 2012-04-10 16:16:05 +02:00
misearch.el * lisp/isearch.el (isearch-search-fun-default): New function. 2012-05-29 12:09:38 +03:00
mouse-copy.el Add 2012 to FSF copyright years for Emacs files (do not merge to trunk) 2012-01-10 23:52:35 -08:00
mouse-drag.el Remove * characters from the front of variable docstrings. 2012-04-09 21:05:48 +08:00
mouse.el Add new error and function `user-error'. 2012-05-04 19:16:47 -04:00
mpc.el Replace lexical-let by lexical-binding (except Gnus, CEDET, ERT). 2012-04-26 08:43:28 -04:00
msb.el Remove * characters from the front of variable docstrings. 2012-04-09 21:05:48 +08:00
mwheel.el * mwheel.el (mwheel-scroll): Call deactivate-mark at the right point. 2012-03-24 19:05:39 +08:00
newcomment.el * loadup.el: Preload newcomment.el. 2012-05-07 16:48:41 -04:00
notifications.el Silence byte-compiler warnings. 2012-05-02 13:38:01 +02:00
novice.el Move define-obsolete-variable-alias before the var's definition. 2012-05-12 23:05:06 -04:00
outline.el Remove * characters from the front of variable docstrings. 2012-04-09 21:05:48 +08:00
paren.el Remove * characters from the front of variable docstrings. 2012-04-09 21:05:48 +08:00
password-cache.el Add 2012 to FSF copyright years for Emacs files (do not merge to trunk) 2012-01-10 23:52:35 -08:00
paths.el Replace w32-init-info through the magic of custom-initialize-delay 2012-05-26 14:58:01 -07:00
pcmpl-cvs.el Add 2012 to FSF copyright years for Emacs files (do not merge to trunk) 2012-01-10 23:52:35 -08:00
pcmpl-gnu.el * lisp/pcmpl-gnu.el (pcomplete/tar): Handle " - ". (Bug#10457) 2012-01-24 13:10:39 -05:00
pcmpl-linux.el Add 2012 to FSF copyright years for Emacs files (do not merge to trunk) 2012-01-10 23:52:35 -08:00
pcmpl-rpm.el * lisp/pcmpl-rpm.el (pcomplete/rpm): Handle -qf. 2012-04-07 11:52:43 -07:00
pcmpl-unix.el Use completion-table-with-quoting for comint and pcomplete. 2012-04-25 14:53:57 -04:00
pcomplete.el Use completion-table-with-quoting for comint and pcomplete. 2012-04-25 14:53:57 -04:00
printing.el Add 2012 to FSF copyright years for Emacs files (do not merge to trunk) 2012-01-10 23:52:35 -08:00
proced.el Remove incorrect uses of "modeline". 2012-06-02 18:56:09 +08:00
ps-bdf.el Add 2012 to FSF copyright years for Emacs files (do not merge to trunk) 2012-01-10 23:52:35 -08:00
ps-def.el Add 2012 to FSF copyright years for Emacs files (do not merge to trunk) 2012-01-10 23:52:35 -08:00
ps-mule.el Add 2012 to FSF copyright years for Emacs files (do not merge to trunk) 2012-01-10 23:52:35 -08:00
ps-print.el * configure.in: Add i386 to cpp_undefs (Bug#8497). 2012-01-12 18:11:38 +08:00
ps-samp.el Add 2012 to FSF copyright years for Emacs files (do not merge to trunk) 2012-01-10 23:52:35 -08:00
README
recentf.el Two new recentf.el keybindings 2012-04-10 04:45:10 +02:00
rect.el Add 2012 to FSF copyright years for Emacs files (do not merge to trunk) 2012-01-10 23:52:35 -08:00
register.el Add 2012 to FSF copyright years for Emacs files (do not merge to trunk) 2012-01-10 23:52:35 -08:00
repeat.el Use set-temporary-overlay-map. 2012-05-04 22:50:20 -04:00
replace.el Doc and lispref updates related to searching 2012-03-28 12:30:12 -07:00
reposition.el Add 2012 to FSF copyright years for Emacs files (do not merge to trunk) 2012-01-10 23:52:35 -08:00
reveal.el Add 2012 to FSF copyright years for Emacs files (do not merge to trunk) 2012-01-10 23:52:35 -08:00
rfn-eshadow.el Add 2012 to FSF copyright years for Emacs files (do not merge to trunk) 2012-01-10 23:52:35 -08:00
rot13.el Add 2012 to FSF copyright years for Emacs files (do not merge to trunk) 2012-01-10 23:52:35 -08:00
ruler-mode.el Add 2012 to FSF copyright years for Emacs files (do not merge to trunk) 2012-01-10 23:52:35 -08:00
savehist.el Stricter check for string value in savehist-printable 2012-03-10 02:09:46 +08:00
saveplace.el * saveplace.el (save-place-to-alist) 2012-03-04 17:56:21 +01:00
sb-image.el Add 2012 to FSF copyright years for Emacs files (do not merge to trunk) 2012-01-10 23:52:35 -08:00
scroll-all.el * lisp/frame.el (scrolling): Remove nearly unused customization group. 2012-04-15 23:11:06 +08:00
scroll-bar.el Add 2012 to FSF copyright years for Emacs files (do not merge to trunk) 2012-01-10 23:52:35 -08:00
scroll-lock.el Minor-mode doc fixes for ARG behavior 2012-02-07 21:12:24 -05:00
select.el Merge from emacs-24; up to 2012-04-20T05:47:55Z!eliz@gnu.org 2012-05-05 12:32:58 +08:00
server.el Fix emacsclient/server behavior under --without-x. 2012-04-20 18:37:57 +08:00
ses.el Remove incorrect uses of "modeline". 2012-06-02 18:56:09 +08:00
shadowfile.el Add 2012 to FSF copyright years for Emacs files (do not merge to trunk) 2012-01-10 23:52:35 -08:00
shell.el Only handle ".." and '..' quoting in shell-mode. 2012-05-15 12:58:35 -04:00
simple.el * lisp/simple.el (execute-extended-command): Set real-this-command. 2012-06-02 15:21:34 -04:00
skeleton.el * lisp/emacs-lisp/lisp-mode.el (doc-string-elt): Move those properties to 2012-05-17 21:46:20 -04:00
sort.el Fix some missing trailing whitespace (tiny change) 2012-03-12 23:54:37 -07:00
soundex.el Add 2012 to FSF copyright years for Emacs files (do not merge to trunk) 2012-01-10 23:52:35 -08:00
speedbar.el Face cleanups. Remove some uses of old-style face spec and :bold/:italic. 2012-06-09 00:39:49 +08:00
startup.el Clean up scoping rule of predefined single-word vars. 2012-06-08 09:18:26 -04:00
strokes.el Remove incorrect uses of "modeline". 2012-06-02 18:56:09 +08:00
subr.el * subr.el (kbd): Make it its own function. 2012-06-07 12:20:28 -04:00
t-mouse.el Add 2012 to FSF copyright years for Emacs files (do not merge to trunk) 2012-01-10 23:52:35 -08:00
tabify.el Add 2012 to FSF copyright years for Emacs files (do not merge to trunk) 2012-01-10 23:52:35 -08:00
talk.el Add 2012 to FSF copyright years for Emacs files (do not merge to trunk) 2012-01-10 23:52:35 -08:00
tar-mode.el Fix minor Y10k bugs. 2012-05-03 23:13:18 -07:00
tempo.el Add 2012 to FSF copyright years for Emacs files (do not merge to trunk) 2012-01-10 23:52:35 -08:00
term.el * lisp/term.el: Move keymap initialization code to be more idiomatic. 2012-05-11 11:05:03 -04:00
terminal.el Add 2012 to FSF copyright years for Emacs files (do not merge to trunk) 2012-01-10 23:52:35 -08:00
thingatpt.el * lisp/thingatpt.el (forward-same-syntax): Handle no ARG case. 2012-05-25 19:40:47 -07:00
thumbs.el Add 2012 to FSF copyright years for Emacs files (do not merge to trunk) 2012-01-10 23:52:35 -08:00
time-stamp.el Add 2012 to FSF copyright years for Emacs files (do not merge to trunk) 2012-01-10 23:52:35 -08:00
time.el Fix minor Y10k bugs. 2012-05-03 23:13:18 -07:00
timezone.el Remove * characters from the front of variable docstrings. 2012-04-09 21:05:48 +08:00
tmm.el * tmm.el (tmm-prompt): Use string-prefix-p. 2012-06-07 12:35:00 -04:00
tool-bar.el Add missing :version tags to new defgroups and defcustoms 2012-02-11 14:13:29 -08:00
tooltip.el Move define-obsolete-variable-alias before the var's definition. 2012-05-12 23:05:06 -04:00
tree-widget.el Add 2012 to FSF copyright years for Emacs files (do not merge to trunk) 2012-01-10 23:52:35 -08:00
tutorial.el lisp/*: Add declarations, remove unused bindings, mark unused args. 2012-04-19 19:20:26 +02:00
type-break.el Remove * characters from the front of variable docstrings. 2012-04-09 21:05:48 +08:00
uniquify.el Add 2012 to FSF copyright years for Emacs files (do not merge to trunk) 2012-01-10 23:52:35 -08:00
userlock.el Add 2012 to FSF copyright years for Emacs files (do not merge to trunk) 2012-01-10 23:52:35 -08:00
vcursor.el * vcursor.el (vcursor-move): Increase the priority of the overlay. 2012-04-11 16:26:55 +02:00
version.el lips/version.el (*-version-string): Declare. 2012-05-27 19:31:31 +02:00
view.el Doc fixes for view-mode and special major-modes 2012-03-15 21:40:20 -04:00
vt100-led.el Add 2012 to FSF copyright years for Emacs files (do not merge to trunk) 2012-01-10 23:52:35 -08:00
vt-control.el Add 2012 to FSF copyright years for Emacs files (do not merge to trunk) 2012-01-10 23:52:35 -08:00
w32-fns.el Replace w32-init-info through the magic of custom-initialize-delay 2012-05-26 14:58:01 -07:00
w32-vars.el Add 2012 to FSF copyright years for Emacs files (do not merge to trunk) 2012-01-10 23:52:35 -08:00
wdired.el Add 2012 to FSF copyright years for Emacs files (do not merge to trunk) 2012-01-10 23:52:35 -08:00
whitespace.el Face cleanups. Remove some uses of old-style face spec and :bold/:italic. 2012-06-09 00:39:49 +08:00
wid-browse.el Minor-mode doc fixes for ARG behavior 2012-02-07 21:12:24 -05:00
wid-edit.el Tweaks to Customize interface. Set custom-reset-button-menu to t. 2012-04-22 21:58:00 +08:00
widget.el Add 2012 to FSF copyright years for Emacs files (do not merge to trunk) 2012-01-10 23:52:35 -08:00
windmove.el Fix windmove-reference-loc miscalculation. 2012-01-21 11:02:34 +01:00
window.el In special-display-popup-frame don't use window--display-buffer (Bug#11651). 2012-06-09 11:59:14 +02:00
winner.el Add 2012 to FSF copyright years for Emacs files (do not merge to trunk) 2012-01-10 23:52:35 -08:00
woman.el Improve tbl support in woman.el. 2012-04-21 13:54:39 +08:00
x-dnd.el Update some function declarations 2012-02-11 15:06:46 -08:00
xml.el Fix xml.el regression introduced by 2012-01-27 change. 2012-04-21 17:53:37 +08:00
xt-mouse.el Add 2012 to FSF copyright years for Emacs files (do not merge to trunk) 2012-01-10 23:52:35 -08:00

This directory contains source code for the parts of Emacs that are
written in Emacs Lisp.  *.el files are Emacs Lisp source, and the
corresponding *.elc files are byte-compiled versions.  Byte-compiled
files are architecture-independent.

The term subdirectory contains Lisp files that customize Emacs for
certain terminal types.  When Emacs starts, it checks the TERM
environment variable to get the terminal type and loads
`term/${TERM}.el' if it exists.

The other subdirectories hold Lisp packages grouped by their general
purpose.