emacs/lisp
Chong Yidong 98cfec0d69 Backport VC improvements from trunk.
* vc/log-edit.el (log-edit-rewrite-fixes): New var.
(log-edit-author): New dynamic var.
(log-edit-changelog-ours-p, log-edit-insert-changelog-entries):
Use it to return the author if different from committer.
(log-edit-insert-changelog): Use them to add Author: and Fixes headers.

* vc/vc-hooks.el (vc-default-mode-line-string): Doc fix.

* vc/vc.el (vc-deduce-backend): New fun.  Handle diff buffers.
(vc-root-diff, vc-print-root-log, vc-log-incoming)
(vc-log-outgoing): Use it.
(vc-diff-internal): Set diff-vc-backend.

* vc/diff-mode.el (diff-vc-backend): New var.

* vc/vc.el (vc-diff-internal): Set `revert-buffer-function'
buffer-locally to lambda that re-runs the vc diff command.
(Bug#6447)

* vc/log-view.el (log-view-mode-map): Bind revert-buffer.

Make 'g' (AKA revert-buffer) rerun VC log, log-incoming and
log-outgoing commands.
* vc/vc.el (vc-log-internal-common): Add a new argument and use it
to create a buffer local revert-buffer-function variable.
(vc-print-log-internal, vc-log-incoming, vc-log-outgoing): Pass a
revert-buffer-function lambda.

Improve VC create/retrieve tag/branch.
* vc.el (vc-create-tag): Do not read the directory name for VCs
with repository revision granularity.  Adjust the tag/branch
prompt.  Reset VC properties.
(vc-retrieve-tag): Do not read the directory name for VCs
with repository revision granularity.  Reset VC properties.

Add optional support for resetting VC properties.
* vc-dispatcher.el (vc-resynch-window): Add new optional argument,
call vc-file-clearprops when true.
(vc-resynch-buffer): Add new optional argument, pass it down.
(vc-resynch-buffers-in-directory): Likewise.

Improve support for special markup in the VC commit message.
* vc-mtn.el (vc-mtn-checkin): Support Author: and Date: markup.
* vc-hg.el (vc-hg-checkin): Add support for Date:.
* vc-git.el (vc-git-checkin):
* vc-bzr.el (vc-bzr-checkin): Likewise.

Add support for vc-log-incoming, improve vc-log-outgoing for Git.
* vc-git.el (vc-git-log-view-mode): Fix font lock for
incoming/outgoing logs.
(vc-git-log-outgoing, vc-git-log-incoming): New functions.

* 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.
* vc-hooks.el (vc-prefix-map): Add bindings for vc-log-incoming
and vc-log-outgoing.
* vc-dir.el (vc-dir-menu-map): Add menu bindings for vc-log-incoming
and vc-log-outgoing.

Improve state updating for VC tag commands.
* vc.el (vc-create-tag, vc-retrieve-tag): Call vc-resynch-buffer
to update the state of all buffers in the directory.

* vc-dir.el (vc-dir): Don't pop-up-windows.  (Bug#6204)

* vc.el (vc-checkin, vc-modify-change-comment):
Adjust to new vc-start/finish-logentry.
(vc-find-conflicted-file): New command.
(vc-transfer-file): Adjust to new vc-checkin.
(vc-next-action): Improve scoping.

* vc-git.el (vc-git-checkin): Use log-edit-extract-headers.
(vc-git-commits-coding-system): Rename from git-commits-coding-system.

* vc-dispatcher.el (vc-log-edit): Shorten names for
log-edit-show-files.

* vc-bzr.el (vc-bzr-checkin): Use log-edit-extract-headers.
(vc-bzr-conflicted-files): New function.

* log-edit.el (log-edit-summary, log-edit-header)
(log-edit-unknown-header): New faces.
(log-edit-headers-alist): New var.
(log-edit-header-contents-regexp): New const.
(log-edit-match-to-eoh): New function.
(log-edit-font-lock-keywords): Use them.
(log-edit): Insert a "Summary:" header as default.
(log-edit-mode): Mark font-lock rules as case-insensitive.
(log-edit-done): Cleanup headers.
(log-edit-extract-headers): New function to replace it.

* vc-dispatcher.el (vc-finish-logentry): Don't mess so badly with
the windows/frames.

* vc-bzr.el (vc-bzr-shelve-apply): Don't use *vc-bzr-shelve*.

* vc-dir.el (vc-dir-kill-line): New command.
(vc-dir-mode-map): Bind it to C-k.
(vc-dir-headers): Abbreviate the working dir.

* vc-git.el (vc-git-revision-table): Include remote branches.

New VC methods: vc-log-incoming and vc-log-outgoing.
* vc.el (vc-print-log-setup-buttons, vc-log-internal-common)
(vc-incoming-outgoing-internal, vc-log-incoming, vc-log-outgoing):
New functions.
(vc-print-log-internal): Just call vc-log-internal-common.
(vc-log-view-type): New permanent local variable.

* vc-hooks.el (vc-menu-map): Bind vc-log-incoming and vc-log-outgoing.

* vc-bzr.el (vc-bzr-log-view-mode): Use vc-log-view-type instead
of the dynamic bound vc-short-log.
(vc-bzr-log-incoming, vc-bzr-log-outgoing): New functions.

* vc-git.el (vc-git-log-outgoing): New function.
(vc-git-log-view-mode): Use vc-log-view-type instead
of the dynamic bound vc-short-log.

* vc-hg.el (vc-hg-log-view-mode): Use vc-log-view-type instead of
the dynamic bound vc-short-log.  Highlight the tag.
(vc-hg-log-incoming, vc-hg-log-outgoing): New functions.
(vc-hg-outgoing, vc-hg-incoming, vc-hg-outgoing-mode):
(vc-hg-incoming-mode): Remove.
(vc-hg-extra-menu-map): Do not bind vc-hg-incoming and vc-hg-outgoing.

Fix default-directory for vc-root-diff.
* vc.el (vc-root-diff): Bind default-directory to the root
directory for the diff command.

* vc-hg.el (vc-hg-push, vc-hg-pull): Use `apply' when calling
`vc-hg-command' with a list of flags.

* vc-bzr.el (vc-bzr-log-edit-mode): Add --fixes support to
log-edit-before-checkin-process.

* vc.el (vc-modify-change-comment): Pass MODE to vc-start-logentry.

* vc-bzr.el, vc-hg.el (log-edit-mode): Declare.

* vc-dispatcher.el (vc-start-logentry): Doc fix.
(log-view-process-buffer, log-edit-extra-flags): Declare.

Add special markup processing for commit logs.
* log-edit.el (log-edit): Add new argument MODE.  Use that mode
when non-nil instead of the log-view-mode.

* vc.el (vc-default-log-edit-mode): New function.

* vc-dispatcher.el (vc-log-edit): Add a mode argument, pass it to
log-edit.

Support for shelving snapshots and for showing shelves.
* vc-bzr.el (vc-bzr-shelve-show, vc-bzr-shelve-show-at-point)
(vc-bzr-shelve-apply-and-keep-at-point, vc-bzr-shelve-snapshot):
New functions.
(vc-bzr-shelve-map, vc-bzr-shelve-menu-map)
(vc-bzr-extra-menu-map): Map them.
2010-10-31 23:13:42 -04:00
..
calc Use the proper form for gnuplot's set command 2010-04-28 21:38:12 -05:00
calendar * lisp/emacs-lisp/float-sup.el (float-pi): New name for `pi'. 2010-09-19 11:49:21 +02:00
cedet Replace some inappropriate uses of toggle-read-only. (Bug#7292) 2010-10-29 00:48:10 -07:00
emacs-lisp Don't allow functions that display messages in unsafep. 2010-10-18 13:28:20 -04:00
emulation * emulation/pc-select.el: Fix typos in docstrings. 2010-08-05 23:31:03 +02:00
erc * erc-backend.el (erc-server-JOIN): Set the correct target list on join. 2010-10-23 13:04:47 -07:00
eshell * lisp/eshell/esh-io.el (eshell-get-target): Better detection of read-only file (Bug#6762). 2010-07-30 19:25:06 -04:00
gnus Fix typos. 2010-10-23 01:38:34 +02:00
international international/characters.el: Add category '|' (word breakable) to fullwidth characters. 2010-10-15 09:41:53 +09:00
language Modify the coding system compound-text-with-extensions to conform to the spec of Compound Text. 2010-08-04 17:06:52 +09:00
mail mail/rmail.el (rmail-show-message-1): Catch an error of base64-decode-region and just show an error message (bug#7165). 2010-10-14 13:23:36 +09:00
mh-e Fix typos in docstrings, comments and ChangeLogs. 2010-10-13 01:25:19 +02:00
net * net/tramp.el (tramp-handle-insert-file-contents): For root, 2010-10-30 18:28:17 +02:00
nxml * TODO: Replace reference to CVS with explicit version number. 2010-02-22 20:38:16 -08:00
obsolete * lisp/obsolete/cl-compat.el, lisp/obsolete/lmenu.el: Comments. 2010-10-07 20:12:43 -07:00
org Fix typos. 2010-10-23 01:38:34 +02:00
play Replace some inappropriate uses of toggle-read-only. (Bug#7292) 2010-10-29 00:48:10 -07:00
progmodes * lisp/progmodes/sql.el: Remove comment link to defunct viewcvs url. 2010-10-30 19:16:20 -07:00
term Bug#7150: Distinguishing between left and right Alt keys on NextStep/OSX. 2010-10-11 21:18:08 +02:00
textmodes Replace some inappropriate uses of toggle-read-only. (Bug#7292) 2010-10-29 00:48:10 -07:00
url * lisp/url/url-cache.el (url-is-cached): Doc fix. 2010-09-18 13:43:13 -07:00
.arch-inventory
.gitignore Ignore all backup files. 2009-08-28 09:50:05 +00:00
abbrev.el * abbrev.el: Fix typos. 2010-04-26 11:55:29 +02:00
abbrevlist.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
add-log.el * add-log.el (find-change-log): Use derived-mode-p rather than 2010-10-27 17:37:15 -04:00
align.el Minor align-regexp fix. 2010-08-20 00:33:06 -07:00
allout.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
ansi-color.el * ansi-color.el: Delete unused escape sequences (Bug#6085). 2010-05-29 14:22:18 -04:00
apropos.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
arc-mode.el Fix bugs #6144 and #6467. 2010-06-25 14:42:47 +03:00
array.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
autoarg.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
autoinsert.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
autorevert.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
avoid.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
battery.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
bindings.el * bindings.el (complete-symbol): Run completion-at-point as a fallback. 2010-08-02 16:23:50 +02:00
bookmark.el Remove unnecessary let-bindings in bookmark.el (Bug#6515) 2010-06-27 14:03:26 -04:00
bs.el Minor bs.el font-lock change. 2010-06-23 23:30:51 -07:00
buff-menu.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
button.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
calculator.el * lisp/emacs-lisp/float-sup.el (float-pi): New name for `pi'. 2010-09-19 11:49:21 +02:00
case-table.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
cdl.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
ChangeLog Backport VC improvements from trunk. 2010-10-31 23:13:42 -04:00
ChangeLog.1 Fix typos in docstrings, comments and ChangeLogs. 2010-10-13 01:25:19 +02:00
ChangeLog.2 Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
ChangeLog.3 Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
ChangeLog.4 Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
ChangeLog.5 Fix typos in ChangeLogs and NEWS files. 2010-01-14 19:29:36 +01:00
ChangeLog.6 Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
ChangeLog.7 Fix typos in docstrings, comments and ChangeLogs. 2010-10-12 17:16:57 +02:00
ChangeLog.8 Fix typos in docstrings, comments and ChangeLogs. 2010-10-13 01:25:19 +02:00
ChangeLog.9 Fix typos. 2010-10-23 01:38:34 +02:00
ChangeLog.10 Fix typos in ChangeLogs and NEWS files. 2010-01-14 19:29:36 +01:00
ChangeLog.11 Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
ChangeLog.12 Fix typos. 2010-10-23 01:38:34 +02:00
ChangeLog.13 Fix typos in docstrings, comments and ChangeLogs. 2010-10-13 01:25:19 +02:00
ChangeLog.14 Fix typos in docstrings, comments and ChangeLogs. 2010-10-13 01:25:19 +02:00
chistory.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
cmuscheme.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
comint.el Fix bug#7224. 2010-10-23 12:15:44 -07:00
compare-w.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
complete.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
completion.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
composite.el Fix typos in docstrings, comments and ChangeLogs. 2010-10-12 17:16:57 +02:00
COPYING
cus-dep.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
cus-edit.el Minor tweaks to custom groups. 2010-02-16 09:35:45 -05:00
cus-face.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
cus-start.el Bug#7150: Distinguishing between left and right Alt keys on NextStep/OSX. 2010-10-11 21:18:08 +02:00
cus-theme.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
custom.el * custom.el (custom-initialize-delay): Doc fix. 2010-02-25 20:42:07 -08:00
cvs-status.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
dabbrev.el * dabbrev.el (dabbrev-completion): Fix typo in docstring. 2010-08-01 05:19:23 +02:00
delim-col.el Minor tweaks to custom groups. 2010-02-16 09:35:45 -05:00
delsel.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
descr-text.el Close bug#6422. 2010-06-18 19:31:44 -07:00
desktop.el * desktop.el (desktop-path): Bump :version after 2009-09-15 change. 2010-09-01 22:38:30 -07:00
dframe.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
diff-mode.el Backport VC improvements from trunk. 2010-10-31 23:13:42 -04:00
diff.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
dired-aux.el * lisp/dired-aux.el (dired-hide-all): Make unused arg optional. Update md5sum. 2010-01-20 11:42:50 -05:00
dired-x.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
dired.el * dired.el (dired-save-positions): Doc fix. (Bug#7119) 2010-09-28 01:41:00 +02:00
dirtrack.el Don't signal error on incorrect dirtrack regexp (Bug#5476) 2010-01-29 14:08:09 -05:00
disp-table.el Fix handling of 8-bit characters in a display table. 2010-08-31 16:49:21 +09:00
dnd.el Fix return value of dnd-get-local-file-name (Bug#7090). 2010-10-02 21:27:39 -04:00
doc-view.el Minor tweaks to custom groups. 2010-02-16 09:35:45 -05:00
dos-fns.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
dos-vars.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
dos-w32.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
double.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
ebuff-menu.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
echistory.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
ediff-diff.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
ediff-help.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
ediff-hook.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
ediff-init.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
ediff-merg.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
ediff-mult.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
ediff-ptch.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
ediff-util.el * ediff-util.el (ediff-file-checked-in-p): Replace '(nil CVS) by 2010-02-03 00:28:57 +02:00
ediff-vers.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
ediff-wind.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
ediff.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
edmacro.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
ehelp.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
electric.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
elide-head.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
emacs-lock.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
emerge.el * x-dnd.el (x-dnd-maybe-call-test-function): 2009-11-13 22:19:45 +00:00
env.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
epa-dired.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
epa-file.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
epa-hook.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
epa-mail.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
epa.el * epa.el (epa--select-keys): Don't explicitly delete the window since 2010-05-25 13:53:37 -04:00
epg-config.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
epg.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
expand.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
ezimage.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
face-remap.el face-remap.el (text-scale-adjust): Call read-event with a proper prompt. 2010-10-20 09:32:53 +09:00
facemenu.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
faces.el Fix typos. 2010-03-24 01:17:31 +01:00
ffap.el * ffap.el (dired-at-point): Fix docstring. (Bug#5565) 2010-02-12 21:28:29 +02:00
filecache.el * filecache.el: Fix typos in docstrings. 2010-04-23 02:15:47 +02:00
files-x.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
files.el * doc/lispref/files.texi (Directory Names): Use \` rather than ^. 2010-09-06 00:03:56 +02:00
filesets.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
find-cmd.el Fix typos in docstrings. 2010-01-14 19:59:31 +01:00
find-dired.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
find-file.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
find-lisp.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
finder.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
flow-ctrl.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
foldout.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
follow.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
font-core.el * lisp/font-lock.el (font-lock-major-mode): Rename from 2010-06-16 16:00:22 -04:00
font-lock.el * lisp/font-lock.el (font-lock-beginning-of-syntax-function): 2010-09-11 15:00:19 +02:00
font-setting.el * lisp/font-setting.el: Fix previous change. 2010-06-22 00:37:07 -07:00
format-spec.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
format.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
forms-d2.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
forms-pass.el
forms.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
frame.el (show-trailing-whitespace): Safe if boolean. (Bug#5312) 2010-01-13 22:13:16 -08:00
fringe.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
generic-x.el Font lock fix for batch mode (Bug#5719). 2010-06-27 14:43:34 -04:00
gs.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
help-at-pt.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
help-fns.el * help-fns.el (find-lisp-object-file-name): Doc fix (bug#6494). 2010-07-23 03:51:48 +02:00
help-macro.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
help-mode.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
help.el Minor fix to describe-key, and a docstring. 2010-07-06 15:42:46 -04:00
hex-util.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
hexl.el Fix bug#5313: editing files in hexl-mode corrupts file 2010-01-14 15:37:13 +01:00
hfy-cmap.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
hi-lock.el Fix hi-lock-mode interactions with font-lock. 2010-10-09 00:09:19 -04:00
hilit-chg.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
hippie-exp.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
hl-line.el Fix typos in some Keywords comments. 2010-06-26 14:01:38 -07:00
htmlfontify.el Minor fix for htmlfontify.el (Bug#6239). 2010-06-27 14:24:42 -04:00
ibuf-ext.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
ibuf-macs.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
ibuffer.el Update autoload checksums. 2010-01-13 13:34:53 +01:00
icomplete.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
ido.el Fix buffer-list rename&refresh after after killing a buffer in ido. 2010-08-21 15:35:27 +02:00
ielm.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
iimage.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
image-dired.el Fix typos in docstrings. 2010-03-22 17:50:29 +01:00
image-file.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
image-mode.el Fix size calculation for sliced images in image-mode (Bug#6639). 2010-07-17 17:51:04 -04:00
image.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
imenu.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
indent.el * indent.el (indent-for-tab-command): Doc fix. 2010-03-22 13:28:27 -04:00
info-look.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
info-xref.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
info.el * info.el (Info-fontify-node): Put Info-breadcrumbs to the `display' 2010-04-23 19:46:03 +03:00
informat.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
isearch.el Move some aliases to options before the associated definitions. 2010-09-23 00:05:22 -07:00
isearchb.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
iswitchb.el Fix buffer-list rename&refresh after after killing a buffer in ido. 2010-08-21 15:35:27 +02:00
jit-lock.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
jka-cmpr-hook.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
jka-compr.el Fix bug #5447, whereby loading C:/foo.el.gz on MS-Windows would fail. 2010-01-22 12:23:25 +02:00
json.el Fix typos in docstrings. 2010-03-22 17:50:29 +01:00
kermit.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
kmacro.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
ldefs-boot.el Bump version to 23.2. 2010-05-07 23:28:26 -04:00
ledit.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
linum.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
loadhist.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
loadup.el * loadup.el: Comment fix. 2010-02-18 01:08:37 -08:00
locate.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
log-edit.el Backport VC improvements from trunk. 2010-10-31 23:13:42 -04:00
log-view.el Backport VC improvements from trunk. 2010-10-31 23:13:42 -04:00
longlines.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
lpr.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
ls-lisp.el Fix typos in docstrings, comments and ChangeLogs. 2010-10-13 01:25:19 +02:00
macros.el Fix keyboard macro key lookup (Bug#5481). 2010-03-03 12:31:50 -05:00
Makefile.in * Makefile.in (ELCFILES): Update. 2010-10-10 21:31:40 +02:00
makefile.w32-in Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
makesum.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
man.el Fix typos in docstrings, comments and ChangeLogs. 2010-10-13 01:25:19 +02:00
master.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
mb-depth.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
md4.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
menu-bar.el Fix treatment of menu-bar-files-menu. 2010-10-26 21:06:52 -07:00
midnight.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
minibuf-eldef.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
minibuffer.el * lisp/minibuffer.el (completion--replace): Move point where it belongs 2010-10-17 13:30:22 -04:00
misc.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
misearch.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
mouse-copy.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
mouse-drag.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
mouse-sel.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
mouse.el Minor fix to describe-key, and a docstring. 2010-07-06 15:42:46 -04:00
mpc.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
msb.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
mwheel.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
newcomment.el * lisp/newcomment.el (comment-normalize-vars): Better test validity of 2010-09-21 15:09:22 +02:00
novice.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
outline.el Fix typos in docstrings. 2010-02-14 18:28:10 +01:00
paren.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
password-cache.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
patcomp.el
paths.el Fix typos in comments. 2010-01-14 19:37:23 +01:00
pcmpl-cvs.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
pcmpl-gnu.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
pcmpl-linux.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
pcmpl-rpm.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
pcmpl-unix.el * pcmpl-unix.el (pcmpl-unix-read-passwd-file): Doc fix. 2010-01-16 15:50:23 -05:00
pcomplete.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
pcvs-defs.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
pcvs-info.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
pcvs-parse.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
pcvs-util.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
pcvs.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
pgg-def.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
pgg-gpg.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
pgg-parse.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
pgg-pgp.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
pgg-pgp5.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
pgg.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
printing.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
proced.el Update email of Roland Winkler <winkler@gnu.org> 2010-09-02 13:47:15 +02:00
ps-bdf.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
ps-def.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
ps-mule.el (ps-mule-begin-job): Fix for the case that only ENCODING is set in a font-spec (bug#7197). 2010-10-14 11:03:25 +09:00
ps-print.el * lisp/repeat.el (repeat): Use read-key to ignore mouse-down events. 2010-10-18 14:38:11 -04:00
ps-samp.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
README
recentf.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
rect.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
register.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
repeat.el * lisp/repeat.el (repeat): Use read-key to ignore mouse-down events. 2010-10-18 14:38:11 -04:00
replace.el Fix query-replace-regexp incomplete highlighting (Bug#6808). 2010-08-08 16:55:52 -04:00
reposition.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
reveal.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
rfn-eshadow.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
rot13.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
ruler-mode.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
s-region.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
savehist.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
saveplace.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
sb-image.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
scroll-all.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
scroll-bar.el scroll-bar.el (scroll-bar-drag-1): Add save-excursion, bug #5654. 2010-02-28 15:36:34 +01:00
scroll-lock.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
select.el * lisp/select.el (x-selection): Mark it as an obsolete alias. 2010-10-27 20:52:14 -07:00
server.el lisp/server.el (server-process-filter): Doc fix. 2010-09-29 15:24:55 +02:00
ses.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
sha1.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
shadowfile.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
shell.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
simple.el Fix typos in docstrings, comments and ChangeLogs. 2010-10-13 01:25:19 +02:00
skeleton.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
smerge-mode.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
sort.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
soundex.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
speedbar.el Replace some inappropriate uses of toggle-read-only. (Bug#7292) 2010-10-29 00:48:10 -07:00
startup.el * startup.el (fancy-about-screen): In mode-line, apply 2010-02-21 08:11:07 -05:00
strokes.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
subr.el * subr.el (unintern): Declare the obarray arg mandatory. 2010-09-14 13:11:44 +02:00
t-mouse.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
tabify.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
talk.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
tar-mode.el tar-mode.el (tar-header-block-tokenize): Decode filenames in "ustar" format. 2010-09-27 14:00:46 +09:00
tempo.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
term.el * term.el: Fix typos in docstrings. 2010-08-02 06:14:26 +02:00
terminal.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
thingatpt.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
thumbs.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
time-stamp.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
time.el * time.el (display-time-day-and-date): Remove spurious * in docstring. 2010-07-19 12:42:22 +02:00
timezone.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
tmm.el Backport from trunk: compute shortcuts in tmm.el. 2010-05-11 16:07:12 -04:00
tool-bar.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
tooltip.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
tree-widget.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
tutorial.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
type-break.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
uniquify.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
userlock.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
vc-annotate.el Fix annotating other revisions for renamed files in vc-annotate. 2010-06-21 20:00:54 -07:00
vc-arch.el Backport VC improvements from trunk. 2010-10-31 23:13:42 -04:00
vc-bzr.el Backport VC improvements from trunk. 2010-10-31 23:13:42 -04:00
vc-cvs.el (vc-cvs-merge-news): Yet another fix of message parsing. 2010-02-18 14:55:41 -05:00
vc-dav.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
vc-dir.el Backport VC improvements from trunk. 2010-10-31 23:13:42 -04:00
vc-dispatcher.el Backport VC improvements from trunk. 2010-10-31 23:13:42 -04:00
vc-git.el Backport VC improvements from trunk. 2010-10-31 23:13:42 -04:00
vc-hg.el Backport VC improvements from trunk. 2010-10-31 23:13:42 -04:00
vc-hooks.el Backport VC improvements from trunk. 2010-10-31 23:13:42 -04:00
vc-mtn.el Backport VC improvements from trunk. 2010-10-31 23:13:42 -04:00
vc-rcs.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
vc-sccs.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
vc-svn.el * lisp/vc-svn.el (vc-svn-merge-news): Use --non-interactive. (Bug#7152) 2010-10-03 12:43:54 -07:00
vc.el Backport VC improvements from trunk. 2010-10-31 23:13:42 -04:00
vcursor.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
version.el Bump version to 23.2.50. 2010-05-08 00:46:44 -04:00
view.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
vt-control.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
vt100-led.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
w32-fns.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
w32-vars.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
wdired.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
whitespace.el Merge whitespace.el from trunk 2010-09-06 12:24:32 -04:00
wid-browse.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
wid-edit.el * lisp/wid-edit.el (widget-complete): Doc fix. 2010-06-21 20:24:22 -07:00
widget.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
windmove.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
window.el lisp/window.el (walk-windows): Doc fix (bug#7105). 2010-09-26 02:37:50 +02:00
winner.el Add 2010 to copyright years. 2010-01-13 00:35:10 -08:00
woman.el Fix typos. 2010-10-23 01:38:34 +02:00
x-dnd.el * dnd.el, font-setting.el, x-dnd.el: Use utf-8 coding (for author name). 2010-06-22 00:10:16 -07:00
xml.el * xml.el (xml-parse-region): Avoid infloop (Bug#5281). 2010-06-30 16:34:06 -04:00
xt-mouse.el * xt-mouse.el (xterm-mouse-event-read): Fix for characters > 127 2010-07-14 19:53:42 +02: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.