1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-15 09:47:20 +00:00
emacs/lisp
Paul Eggert af32fa9562 New optional ZONE arg for format-time-string etc.
This simplifies time conversions in other time zones.
It also prevents display-time-world tampering with TZ (Bug#21020).
* admin/admin.el (add-release-logs):
Use improved add-log-time-format API.
* admin/merge-gnulib (GNULIB_MODULES): Add time_rz, timegm.
(GNULIB_TOOL_FLAGS): Avoid flexmember, setenv, unsetenv.
* configure.ac (tzalloc): Remove test for this, since
Emacs no longer uses HAVE_TZALLOC directly.
* doc/lispref/os.texi (Time of Day, Time Conversion)
(Time Parsing):
* etc/NEWS: Document the new behavior.
Merge from gnulib, incorporating:
2015-07-25 strftime: fix newly-introduced bug on Solaris
2015-07-23 fprintftime, strftime: use timezone_t args
* lib/gnulib.mk, m4/gnulib-comp.m4: Regenerate.
* lib/strftime.c, lib/strftime.h, lib/time.in.h, m4/sys_time_h.m4:
* m4/time_h.m4:
Update from gnulib.
* lib/time_rz.c, lib/timegm.c, m4/time_rz.m4, m4/timegm.m4:
New files from gnulib.
* lisp/time-stamp.el (time-stamp-string):
* lisp/time.el (display-time-world-list)
(display-time-world-display):
Use new API, with time zone arg.
* lisp/time.el (display-time-world-display):
Fix race when current-time advances while we're running.
* lisp/vc/add-log.el (add-log-iso8601-time-zone)
(add-log-iso8601-time-string): Accept optional time zone arg.
* lisp/vc/add-log.el (add-change-log-entry):
* lisp/vc/log-edit.el (log-edit-changelog-ours-p): Use new arg.
* nt/gnulib.mk: Propagate lib/gnulib.mk changes here.
Add rules for the time module, since they're now needed
for tzalloc etc.
* src/conf_post.h (getenv_TZ, setenv_TZ): New macros.
(emacs_getenv_TZ, emacs_setenv_TZ): New decls.
* src/editfns.c: Include errno.h.
(set_time_zone_rule): Omit unnecessary forward decl.
(initial_tz): Remove, replacing with ...
(local_tz, wall_clock_tz, utc_tz): New static vars and constants.
(tzeqlen): New constant; prefer it to (sizeof "TZ=" - 1).
(emacs_localtime_rz, emacs_mktime_z, xtzalloc, xtzfree)
(tzlookup): New static functions.
(init_editfns): New arg DUMPING.  All uses changed.
(init_editfns): Omit most initialization if dumping, not if
!initialized.  Initialize wall_clock_tz and local_tz.
(emacs_nmemftime, format_time_string): Time zone argument can now
be any time zone, not just a boolean for UTC or local time.  All
callers changed.
(Fformat_time_string, Fencode_time, Fcurrent_time_string)
(Fcurrent_time_zone): New optional arg ZONE.
(Fdecode_time, Fset_time_zone_rule): ZONE arg can now also take
the same form as with the other new additions.
(decode_time_zone): Remove; no longer needed.
(tzvalbuf): Now file-scope.
(emacs_getenv_TZ, emacs_setenv_TZ): New functions.
(syms_of_editfns): Define Qwall.
* src/editfns.c (mktime_z) [!HAVE_TZALLOC]:
* src/systime.h (mktime_z, timezone_t, tzalloc, tzfree)
[!HAVE_TZALLOC]:
Remove; now supplied by gnulib.
* src/emacs.c (main):
* src/lisp.h (init_editfns): Adjust to init_editfns API change.
2015-07-26 12:44:54 -07:00
..
calc * lisp/calc-store.el (calc-insert-permanent-variable): Heed case. 2015-06-29 14:26:29 +02:00
calendar Simplify icalendar decoding of Z dates 2015-07-20 09:48:02 -07:00
cedet Introduce a Project API 2015-07-10 04:40:09 +03:00
emacs-lisp add file name to autoload error messages. 2015-07-22 04:31:44 -05:00
emulation Fix minor quoting problems in doc strings 2015-05-28 00:22:03 -07:00
erc In strings, prefer plain and ' to \ and \' 2015-06-30 15:08:02 -07:00
eshell Fix minor quoting problems in doc strings 2015-05-28 00:22:03 -07:00
gnus sieve-mode: support "body" test command 2015-07-19 00:11:02 +00:00
international Fix following Info cross-references to anchors 2015-07-18 13:23:22 +03:00
language Fix minor quoting problems in doc strings 2015-05-28 00:22:03 -07:00
leim/quail * lisp/leim/quail/lrt.el (quail-lrt-update-translation): 2015-06-04 19:25:48 -04:00
mail ; Auto-commit of loaddefs files. 2015-05-28 06:21:55 -04:00
mh-e Fix some “nested” quoting confusion in doc strings 2015-06-21 12:38:08 -07:00
net Fix some Tramp problems with HP-UX 2015-07-23 21:49:40 +02:00
nxml Update copyright year to 2015 2015-01-01 14:26:41 -08:00
obsolete * lisp/obsolete/longlines.el (longlines-search-function): 2015-07-17 12:39:01 +01:00
org Use \r rather than ^M in string literals 2015-05-30 09:44:38 -07:00
play * lisp/play/landmark.el: Move to lisp/obsolete/ 2015-07-07 12:32:13 +02:00
progmodes ; xref-find-regexp: (require 'grep), for grep-read-files 2015-07-22 23:08:50 +03:00
term * lisp/term/xterm.el (xterm--query): Fix paren typo (bug#20951). 2015-07-02 10:49:09 -04:00
textmodes Fix flyspell-check-previous-highlighted-word 2015-07-25 12:35:16 +03:00
url * lisp/url/url-handlers.el (url-file-name-completion) 2015-05-11 23:51:58 -07:00
vc New optional ZONE arg for format-time-string etc. 2015-07-26 12:44:54 -07:00
abbrev.el * abbrev.el (define-abbrev-table): Refine last change. 2015-04-10 02:47:44 -04:00
align.el Update copyright year to 2015 2015-01-01 14:26:41 -08:00
allout-widgets.el Don't quote nil and t in doc strings 2015-05-21 10:06:44 -07:00
allout.el In strings, prefer plain and ' to \ and \' 2015-06-30 15:08:02 -07:00
ansi-color.el Update copyright year to 2015 2015-01-01 14:26:41 -08:00
apropos.el apropos-library quoting fix 2015-06-28 13:24:57 -07:00
arc-mode.el Fix a thinko in arc-mode.el 2015-06-08 17:22:44 +03:00
array.el Update copyright year to 2015 2015-01-01 14:26:41 -08:00
autoarg.el Update copyright year to 2015 2015-01-01 14:26:41 -08:00
autoinsert.el Update copyright year to 2015 2015-01-01 14:26:41 -08:00
autorevert.el Fix Bug#20943. 2015-07-16 20:04:07 +02:00
avoid.el Update copyright year to 2015 2015-01-01 14:26:41 -08:00
battery.el * lisp/battery.el: Make it work on my MSI Wind 2015-03-06 23:42:10 -05:00
bindings.el * lisp/bindings.el (debug-ignored-errors): Add mark-inactive. 2015-06-12 02:17:23 +03:00
bookmark.el * lisp/bookmark.el (bookmark-bmenu-goto-bookmark): Don't inf-loop. 2015-04-09 11:07:15 -04:00
bs.el Update copyright year to 2015 2015-01-01 14:26:41 -08:00
buff-menu.el Update copyright year to 2015 2015-01-01 14:26:41 -08:00
button.el lisp/button.el (button-activate, push-button): Doc fix. (Bug#19628) 2015-01-20 20:15:20 +02:00
calculator.el * lisp/calculator.el (calculator-funcall): 2015-05-18 20:54:24 -04:00
case-table.el Update copyright year to 2015 2015-01-01 14:26:41 -08:00
cdl.el Update copyright year to 2015 2015-01-01 14:26:41 -08:00
ChangeLog.1 Update copyright year to 2015 2015-01-01 14:26:41 -08:00
ChangeLog.2 Update copyright year to 2015 2015-01-01 14:26:41 -08:00
ChangeLog.3 Update copyright year to 2015 2015-01-01 14:26:41 -08:00
ChangeLog.4 Update copyright year to 2015 2015-01-01 14:26:41 -08:00
ChangeLog.5 Update copyright year to 2015 2015-01-01 14:26:41 -08:00
ChangeLog.6 Update copyright year to 2015 2015-01-01 14:26:41 -08:00
ChangeLog.7 Update copyright year to 2015 2015-01-01 14:26:41 -08:00
ChangeLog.8 Update copyright year to 2015 2015-01-01 14:26:41 -08:00
ChangeLog.9 Update copyright year to 2015 2015-01-01 14:26:41 -08:00
ChangeLog.10 Update copyright year to 2015 2015-01-01 14:26:41 -08:00
ChangeLog.11 Update copyright year to 2015 2015-01-01 14:26:41 -08:00
ChangeLog.12 Update copyright year to 2015 2015-01-01 14:26:41 -08:00
ChangeLog.13 Update copyright year to 2015 2015-01-01 14:26:41 -08:00
ChangeLog.14 Update copyright year to 2015 2015-01-01 14:26:41 -08:00
ChangeLog.15 Update copyright year to 2015 2015-01-01 14:26:41 -08:00
ChangeLog.16 Change defgeneric so it doesn't completely redefine the function 2015-05-21 23:46:10 -04:00
ChangeLog.17 ; Omit entries that will appear in ChangeLog.2 2015-05-23 08:36:28 -07:00
character-fold.el * lisp/character-fold.el (character-fold-table): 2015-07-05 16:45:58 +01:00
chistory.el Update copyright year to 2015 2015-01-01 14:26:41 -08:00
cmuscheme.el ; Comment fixes. 2015-06-15 21:24:24 -04:00
color.el Update copyright year to 2015 2015-01-01 14:26:41 -08:00
comint.el Fix fontification of keywords clobbered by the prompt. 2015-04-17 19:56:41 +02:00
completion.el (completion-lisp-mode-hook): Use completion-separator-chars 2015-04-13 10:35:15 -04:00
composite.el Update copyright year to 2015 2015-01-01 14:26:41 -08:00
COPYING
cus-dep.el Tweak some build messages. 2015-06-05 16:10:18 -04:00
cus-edit.el Don't quote nil and t in doc strings 2015-05-21 10:06:44 -07:00
cus-face.el Update copyright year to 2015 2015-01-01 14:26:41 -08:00
cus-start.el Improve port of settings UI to older displays 2015-06-20 13:35:59 -07:00
cus-theme.el Improve the optional translation of quotes 2015-06-19 00:38:45 -07:00
custom.el * lisp/custom.el (custom-declare-group): No need to purecopy 2015-04-21 21:30:54 -04:00
dabbrev.el Update copyright year to 2015 2015-01-01 14:26:41 -08:00
delim-col.el Update copyright year to 2015 2015-01-01 14:26:41 -08:00
delsel.el * lisp/delsel.el: Deprecate the `kill' option. Use lexical-binding. 2015-02-05 11:02:10 -05:00
descr-text.el Improve the optional translation of quotes 2015-06-19 00:38:45 -07:00
desktop.el * lisp/desktop.el: If modes aren't autoloaded, try simple guesswork. 2015-05-25 23:27:55 -07:00
dframe.el Update copyright year to 2015 2015-01-01 14:26:41 -08:00
dired-aux.el Don't quote nil and t in doc strings 2015-05-21 10:06:44 -07:00
dired-x.el Fix parsing glitches in dired-mark-sexp (bug#13575) 2015-07-06 15:10:03 +02:00
dired.el ; Auto-commit of loaddefs files. 2015-07-06 15:10:27 +02:00
dirtrack.el Don't quote nil and t in doc strings 2015-05-21 10:06:44 -07:00
disp-table.el Update copyright year to 2015 2015-01-01 14:26:41 -08:00
dnd.el Update copyright year to 2015 2015-01-01 14:26:41 -08:00
doc-view.el doc-view.el (doc-view-kill-proc-and-buffer): Obsolete. 2015-02-06 07:44:02 -02:00
dom.el * lisp/dom.el: Load subr-x when compiling, for when-let. 2015-04-30 20:09:50 -04:00
dos-fns.el Update copyright year to 2015 2015-01-01 14:26:41 -08:00
dos-vars.el Update copyright year to 2015 2015-01-01 14:26:41 -08:00
dos-w32.el Update copyright year to 2015 2015-01-01 14:26:41 -08:00
double.el Update copyright year to 2015 2015-01-01 14:26:41 -08:00
dynamic-setting.el Update copyright year to 2015 2015-01-01 14:26:41 -08:00
ebuff-menu.el Update copyright year to 2015 2015-01-01 14:26:41 -08:00
echistory.el Update copyright year to 2015 2015-01-01 14:26:41 -08:00
edmacro.el cl-lib.el: Partial revert of "2015-04-05 Rationalize c[ad]+r" 2015-04-10 01:50:22 -04:00
ehelp.el Update copyright year to 2015 2015-01-01 14:26:41 -08:00
elec-pair.el Address some compilation warnings. 2015-06-16 20:28:48 -04:00
electric.el Fix quoting in electric-quote-mode doc string 2015-06-20 13:35:59 -07:00
elide-head.el Update copyright year to 2015 2015-01-01 14:26:41 -08:00
emacs-lock.el Update copyright year to 2015 2015-01-01 14:26:41 -08:00
env.el Update copyright year to 2015 2015-01-01 14:26:41 -08:00
epa-dired.el Update copyright year to 2015 2015-01-01 14:26:41 -08:00
epa-file.el Update copyright year to 2015 2015-01-01 14:26:41 -08:00
epa-hook.el Update copyright year to 2015 2015-01-01 14:26:41 -08:00
epa-mail.el Update copyright year to 2015 2015-01-01 14:26:41 -08:00
epa.el Update copyright year to 2015 2015-01-01 14:26:41 -08:00
epg-config.el epg: Automatically start pinentry server 2015-07-16 15:43:03 +09:00
epg.el * epg.el (epg--start): Check that gpgconf can be found before calling it. 2015-07-18 09:06:46 -06:00
expand.el Update copyright year to 2015 2015-01-01 14:26:41 -08:00
ezimage.el Update copyright year to 2015 2015-01-01 14:26:41 -08:00
face-remap.el Address some compilation warnings. 2015-06-16 20:04:35 -04:00
facemenu.el Don't quote nil and t in doc strings 2015-05-21 10:06:44 -07:00
faces.el Improve accessibility of window dividers. (Bug#20183) 2015-07-02 09:03:45 +02:00
ffap.el Fix point positioning in ffap-next-guess 2015-07-22 18:35:16 +03:00
filecache.el * filecache.el (file-cache-filter-regexps): Add lock files (tiny change) 2015-02-23 23:50:44 -08:00
filenotify.el * filenotify.el (file-notify--descriptor): Do not cons for remote files. 2015-01-13 15:58:50 +01:00
files-x.el * lisp/files-x.el (add-file-local-variable): 2015-06-10 16:38:18 -04:00
files.el Fix Bug#20943. 2015-07-16 20:04:07 +02:00
filesets.el Update copyright year to 2015 2015-01-01 14:26:41 -08:00
find-cmd.el Update copyright year to 2015 2015-01-01 14:26:41 -08:00
find-dired.el Update copyright year to 2015 2015-01-01 14:26:41 -08:00
find-file.el Update copyright year to 2015 2015-01-01 14:26:41 -08:00
find-lisp.el Update copyright year to 2015 2015-01-01 14:26:41 -08:00
finder.el Tweak some build messages. 2015-06-05 16:10:18 -04:00
flow-ctrl.el Update copyright year to 2015 2015-01-01 14:26:41 -08:00
foldout.el * lisp/foldout.el: Update for 2015-01-30 outline.el changes. 2015-04-28 21:09:25 -04:00
follow.el Update copyright year to 2015 2015-01-01 14:26:41 -08:00
font-core.el Update copyright year to 2015 2015-01-01 14:26:41 -08:00
font-lock.el Add save-mark-and-excursion', which has the old save-excursion' behavior 2015-05-04 11:46:12 -07:00
format-spec.el Update copyright year to 2015 2015-01-01 14:26:41 -08:00
format.el Update copyright year to 2015 2015-01-01 14:26:41 -08:00
forms.el Fix minor quoting problems in doc strings 2015-05-19 15:01:16 -07:00
frame.el Fix some issues with `window-divider-mode' 2015-07-03 15:15:51 +02:00
frameset.el cl-lib.el: Partial revert of "2015-04-05 Rationalize c[ad]+r" 2015-04-10 01:50:22 -04:00
fringe.el Update copyright year to 2015 2015-01-01 14:26:41 -08:00
generic-x.el Update copyright year to 2015 2015-01-01 14:26:41 -08:00
gs.el Update copyright year to 2015 2015-01-01 14:26:41 -08:00
help-at-pt.el Update copyright year to 2015 2015-01-01 14:26:41 -08:00
help-fns.el Add online-help support to describe types 2015-07-07 02:14:16 -04:00
help-macro.el Update copyright year to 2015 2015-01-01 14:26:41 -08:00
help-mode.el Add online-help support to describe types 2015-07-07 02:14:16 -04:00
help.el 2015-07-22 Martin Rudalics <rudalics@gmx.at> 2015-07-22 12:20:13 +02:00
hex-util.el Update copyright year to 2015 2015-01-01 14:26:41 -08:00
hexl.el eldoc: modify eldoc-documentation-function' using add-function' 2015-01-20 15:04:15 +01:00
hfy-cmap.el Update copyright year to 2015 2015-01-01 14:26:41 -08:00
hi-lock.el * lisp/eshell: Fix history substitution error 2015-02-24 14:03:54 -05:00
hilit-chg.el Update copyright year to 2015 2015-01-01 14:26:41 -08:00
hippie-exp.el Further lisp-complete-symbol related cleanup. 2015-05-18 20:51:47 -04:00
hl-line.el Update copyright year to 2015 2015-01-01 14:26:41 -08:00
htmlfontify.el Spelling fix for 'hfy-optimizations' 2015-04-05 23:43:22 -07:00
ibuf-ext.el Update copyright year to 2015 2015-01-01 14:26:41 -08:00
ibuf-macs.el Update copyright year to 2015 2015-01-01 14:26:41 -08:00
ibuffer.el Don't quote nil and t in doc strings 2015-05-21 10:06:44 -07:00
icomplete.el New command icomplete-force-complete-and-exit 2015-05-19 15:53:32 +03:00
ido.el Add argument to reverse the meaning of ido-restrict-to-matches 2015-07-02 00:57:07 +02:00
ielm.el Don't quote nil and t in doc strings 2015-05-21 10:06:44 -07:00
iimage.el Update copyright year to 2015 2015-01-01 14:26:41 -08:00
image-dired.el Update copyright year to 2015 2015-01-01 14:26:41 -08:00
image-file.el Update copyright year to 2015 2015-01-01 14:26:41 -08:00
image-mode.el image-mode.el (image-kill-buffer): New command bound to k. 2015-02-06 07:43:50 -02:00
image.el Update copyright year to 2015 2015-01-01 14:26:41 -08:00
imenu.el Update copyright year to 2015 2015-01-01 14:26:41 -08:00
indent.el * lisp/indent.el (indent-region): Don't deactivate the mark 2015-04-17 10:30:50 -04:00
info-look.el Accept curved quotes in doc strings 2015-05-28 00:22:03 -07:00
info-xref.el Update copyright year to 2015 2015-01-01 14:26:41 -08:00
info.el Fix info-apropos when the default encoding is Latin-N 2015-07-18 21:43:21 +03:00
informat.el Update copyright year to 2015 2015-01-01 14:26:41 -08:00
isearch.el Factor isearch word description into new function 2015-07-04 17:10:55 -07:00
isearchb.el Add predicate' arg to read-buffer' and use it for erc-iswitchb 2015-03-16 14:49:01 -04:00
jit-lock.el Tidy up fix to debbugs#20240. 2015-04-05 14:40:57 +00:00
jka-cmpr-hook.el Update copyright year to 2015 2015-01-01 14:26:41 -08:00
jka-compr.el Update copyright year to 2015 2015-01-01 14:26:41 -08:00
json.el Only escape quotation mark, backslash and cntrl U+0000 to U+001F 2015-03-25 21:54:29 +02:00
kermit.el Fix some “nested” quoting confusion in doc strings 2015-06-21 12:38:08 -07:00
kmacro.el Update copyright year to 2015 2015-01-01 14:26:41 -08:00
ldefs-boot.el ; Auto-commit of loaddefs files. 2015-07-01 06:22:13 -04:00
linum.el Don't quote nil and t in doc strings 2015-05-21 10:06:44 -07:00
loadhist.el Update copyright year to 2015 2015-01-01 14:26:41 -08:00
loadup.el No need for cp51932.el, eucjp-ms.el to not be compiled any more. 2015-06-15 23:02:58 -07:00
locate.el Update copyright year to 2015 2015-01-01 14:26:41 -08:00
lpr.el Update copyright year to 2015 2015-01-01 14:26:41 -08:00
ls-lisp.el In strings, prefer plain and ' to \ and \' 2015-06-30 15:08:02 -07:00
macros.el * lisp/macros.el (name-last-kbd-macro, kbd-macro-query) 2015-06-15 20:41:54 -04:00
Makefile.in * leim/Makefile.in, lisp/Makefile.in: Add missing EXEEXT definition. 2015-06-30 16:20:39 -04:00
makefile.w32-in Update copyright year to 2015 2015-01-01 14:26:41 -08:00
makesum.el Update copyright year to 2015 2015-01-01 14:26:41 -08:00
man.el Fix byte-compiler warnings about looking-back. 2015-04-20 21:55:00 -04:00
master.el Update copyright year to 2015 2015-01-01 14:26:41 -08:00
mb-depth.el Update copyright year to 2015 2015-01-01 14:26:41 -08:00
md4.el Update copyright year to 2015 2015-01-01 14:26:41 -08:00
menu-bar.el ; Spelling fixes 2015-07-05 23:17:48 -07:00
midnight.el * lisp/midnight.el: Make it a minor mode. Allow predicates. 2015-04-27 19:07:51 -04:00
minibuf-eldef.el Update copyright year to 2015 2015-01-01 14:26:41 -08:00
minibuffer.el ; Fix a typo 2015-07-08 13:57:40 +03:00
misc.el Update copyright year to 2015 2015-01-01 14:26:41 -08:00
misearch.el Add doc strings for some Isearch state vars 2015-04-07 10:13:48 -07:00
mouse-copy.el Replace an obsolete function alias 2015-04-28 23:40:27 -07:00
mouse-drag.el Don't block changes in mouse pointer inside 'track-mouse' 2015-06-30 18:59:21 +03:00
mouse.el Improve accessibility of window dividers. (Bug#20183) 2015-07-02 09:03:45 +02:00
mpc.el Update copyright year to 2015 2015-01-01 14:26:41 -08:00
msb.el Update copyright year to 2015 2015-01-01 14:26:41 -08:00
mwheel.el Update copyright year to 2015 2015-01-01 14:26:41 -08:00
newcomment.el newcomment.el (comment-line): Fix missing paren. 2015-02-08 20:24:36 -02:00
notifications.el Update copyright year to 2015 2015-01-01 14:26:41 -08:00
novice.el Update copyright year to 2015 2015-01-01 14:26:41 -08:00
outline.el lisp/outline.el (outline-show-entry): Fix one invisible char 2015-02-08 16:08:40 +01:00
paren.el Update copyright year to 2015 2015-01-01 14:26:41 -08:00
password-cache.el Update copyright year to 2015 2015-01-01 14:26:41 -08:00
pcmpl-cvs.el * lisp/pcmpl-cvs.el (pcmpl-cvs-entries): Don't assume CVS/Entries exists. 2015-05-23 12:06:23 -04:00
pcmpl-gnu.el Update copyright year to 2015 2015-01-01 14:26:41 -08:00
pcmpl-linux.el Update copyright year to 2015 2015-01-01 14:26:41 -08:00
pcmpl-rpm.el Update copyright year to 2015 2015-01-01 14:26:41 -08:00
pcmpl-unix.el pcmpl-ssh-known-hosts: Use char-before' instead of looking-back'. 2015-04-03 13:57:42 +02:00
pcmpl-x.el Update copyright year to 2015 2015-01-01 14:26:41 -08:00
pcomplete.el Backport: Parse pcomplete arguments regardless of pcomplete-cycle-completions 2015-01-16 05:43:39 +03:00
printing.el Update copyright year to 2015 2015-01-01 14:26:41 -08:00
proced.el Update copyright year to 2015 2015-01-01 14:26:41 -08:00
profiler.el Update copyright year to 2015 2015-01-01 14:26:41 -08:00
ps-bdf.el Update copyright year to 2015 2015-01-01 14:26:41 -08:00
ps-def.el Update copyright year to 2015 2015-01-01 14:26:41 -08:00
ps-mule.el Update copyright year to 2015 2015-01-01 14:26:41 -08:00
ps-print.el Don't quote nil and t in doc strings 2015-05-21 10:06:44 -07:00
ps-samp.el Update copyright year to 2015 2015-01-01 14:26:41 -08:00
README
recentf.el Prefer "this" to “this” in doc strings 2015-05-19 19:08:52 -07:00
rect.el * lisp/rect.el (delete-whitespace-rectangle-line): Don't cross EOL. 2015-04-12 15:50:02 +02:00
register.el Push mark before goto-char in jump-to-register and check-parens 2015-02-18 16:36:24 -02:00
repeat.el Update copyright year to 2015 2015-01-01 14:26:41 -08:00
replace.el * lisp/replace.el (replace-search): Fix regexp case (bug#20901) 2015-06-26 19:03:01 +01:00
reposition.el Update copyright year to 2015 2015-01-01 14:26:41 -08:00
reveal.el Update copyright year to 2015 2015-01-01 14:26:41 -08:00
rfn-eshadow.el Update copyright year to 2015 2015-01-01 14:26:41 -08:00
rot13.el Update copyright year to 2015 2015-01-01 14:26:41 -08:00
ruler-mode.el Don't block changes in mouse pointer inside 'track-mouse' 2015-06-30 18:59:21 +03:00
savehist.el Update copyright year to 2015 2015-01-01 14:26:41 -08:00
saveplace.el * lisp/saveplace.el (save-place-mode): New minor mode. 2015-04-27 19:12:11 -04:00
sb-image.el Update copyright year to 2015 2015-01-01 14:26:41 -08:00
scroll-all.el Update copyright year to 2015 2015-01-01 14:26:41 -08:00
scroll-bar.el Update copyright year to 2015 2015-01-01 14:26:41 -08:00
scroll-lock.el Update copyright year to 2015 2015-01-01 14:26:41 -08:00
select.el Replace gui-method macros with cl-generic with &context 2015-05-23 11:32:29 -04:00
server.el Improve recent change to emacsclient on Cygwin 2015-07-07 10:24:09 -04:00
ses.el Don't quote nil and t in doc strings 2015-05-21 10:06:44 -07:00
shadowfile.el Update copyright year to 2015 2015-01-01 14:26:41 -08:00
shell.el Fix shell-for/backward-command to exclude spaces 2015-06-23 09:19:36 +08:00
simple.el * lisp/simple.el (set-variable): Tweak recent doc fix. 2015-07-06 16:35:45 -04:00
skeleton.el Pass lambdas to `skeleton-read' 2015-07-24 19:27:56 +03:00
sort.el Update copyright year to 2015 2015-01-01 14:26:41 -08:00
soundex.el Update copyright year to 2015 2015-01-01 14:26:41 -08:00
speedbar.el Update copyright year to 2015 2015-01-01 14:26:41 -08:00
startup.el -batch should not affect ‘’ -> `' display 2015-07-02 09:30:13 -07:00
strokes.el Update copyright year to 2015 2015-01-01 14:26:41 -08:00
subr.el Fix infinite loop in delete-consecutive-dups 2015-07-26 10:43:28 -07:00
t-mouse.el Update copyright year to 2015 2015-01-01 14:26:41 -08:00
tabify.el Update copyright year to 2015 2015-01-01 14:26:41 -08:00
talk.el Update copyright year to 2015 2015-01-01 14:26:41 -08:00
tar-mode.el Allow for adding new members to Tar archives. 2015-01-27 21:56:57 +00:00
tempo.el Update copyright year to 2015 2015-01-01 14:26:41 -08:00
term.el Stop messing with the EMACS env var 2015-04-09 11:01:04 -04:00
thingatpt.el Fix bug in thing-at-point--bounds-of-well-formed-url 2015-07-09 10:19:42 +08:00
thumbs.el Update copyright year to 2015 2015-01-01 14:26:41 -08:00
time-stamp.el New optional ZONE arg for format-time-string etc. 2015-07-26 12:44:54 -07:00
time.el New optional ZONE arg for format-time-string etc. 2015-07-26 12:44:54 -07:00
timezone.el Update copyright year to 2015 2015-01-01 14:26:41 -08:00
tmm.el In strings, prefer plain and ' to \ and \' 2015-06-30 15:08:02 -07:00
tool-bar.el Update copyright year to 2015 2015-01-01 14:26:41 -08:00
tooltip.el Update copyright year to 2015 2015-01-01 14:26:41 -08:00
tree-widget.el Update copyright year to 2015 2015-01-01 14:26:41 -08:00
tutorial.el Update copyright year to 2015 2015-01-01 14:26:41 -08:00
type-break.el Don't quote nil and t in doc strings 2015-05-21 10:06:44 -07:00
uniquify.el Update copyright year to 2015 2015-01-01 14:26:41 -08:00
userlock.el Update copyright year to 2015 2015-01-01 14:26:41 -08:00
vcursor.el Update copyright year to 2015 2015-01-01 14:26:41 -08:00
version.el * lisp/version.el (emacs-repository-version-git): Demote errors. 2015-06-14 16:33:05 -07:00
view.el Update copyright year to 2015 2015-01-01 14:26:41 -08:00
vt100-led.el Update copyright year to 2015 2015-01-01 14:26:41 -08:00
vt-control.el Update copyright year to 2015 2015-01-01 14:26:41 -08:00
w32-fns.el * lisp/w32-fns.el (w32-shell-name): Silence compiler. 2015-05-05 20:10:59 -07:00
w32-vars.el Resurrect the lost optional fixed font menu on w32 2015-03-17 20:29:55 +02:00
wdired.el Update copyright year to 2015 2015-01-01 14:26:41 -08:00
whitespace.el Declare whitespace-line-column a safe file-local 2015-07-09 01:38:29 +03:00
wid-browse.el Update copyright year to 2015 2015-01-01 14:26:41 -08:00
wid-edit.el Improve the optional translation of quotes 2015-06-19 00:38:45 -07:00
widget.el Don't quote nil and t in doc strings 2015-05-21 10:06:44 -07:00
windmove.el Fix minor quoting problems in doc strings 2015-05-19 15:01:16 -07:00
window.el Fix customization type of `even-window-sizes'. 2015-07-22 12:34:41 +02:00
winner.el Use user-error where error is inappropriate 2015-02-18 16:36:22 -02:00
woman.el Don't quote nil and t in doc strings 2015-05-21 10:06:44 -07:00
x-dnd.el browse-url: mark some of the more obsolete stuff as such 2015-03-24 23:26:48 -07:00
xml.el Update copyright year to 2015 2015-01-01 14:26:41 -08:00
xt-mouse.el Prefer "this" to “this” in doc strings 2015-05-19 19:08:52 -07: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.