aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/ChangeLog65
-rw-r--r--lisp/net/tramp-sh.el2
2 files changed, 6 insertions, 61 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 3cc42a5964b..f91313b5655 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,69 +1,14 @@
12015-02-14 Artur Malabarba <bruce.connor.am@gmail.com> 12015-02-15 rémy Compostella <jeremy.compostella@gmail.com>
2 2
3 * emacs-lisp/package.el (package-read-all-archive-contents): Don't 3 * net/tramp-sh.el (tramp-remote-process-environment): Disable paging
4 build the compatibility table. 4 with PAGER=cat. (Bug#19870)
5 (package-refresh-contents, package-initialize): Do build the
6 compatibility table.
7 (package--build-compatibility-table): New function.
8 (describe-package-1): Describe why a package is incompatible.
9
102015-02-14 Stefan Monnier <monnier@iro.umontreal.ca>
11
12 * emacs-lisp/cl-preloaded.el (cl-struct-define): Register as children
13 of the parent.
14 (cl--assertion-failed): New function.
15 (cl-assertion-failed): Move in from cl-lib.el.
16
17 * emacs-lisp/cl-macs.el (cl-defstruct): Don't generate code to register
18 as children of its parents.
19 (cl--make-type-test, cl--compiler-macro-typep): Remove functions.
20 (cl-typep): Reimplement using define-inline.
21 (cl-assert): Use cl--assertion-failed.
22 (cl-struct-slot-value): Use define-inline.
23
24 * emacs-lisp/cl-lib.el: Move autoloaded code to cl-preload.
25
26 * textmodes/flyspell.el (flyspell-word): Defvar (bug#19844).
27 (flyspell-generic-check-word-p): Mark as obsolete.
28
292015-02-13 Artur Malabarba <bruce.connor.am@gmail.com>
30
31 * emacs-lisp/package.el (package--compatibility-table): New var.
32 (package--add-to-compatibility-table): New function.
33 (package-read-all-archive-contents): Populate compatibility table.
34 (package--incompatible-p): Also look in dependencies.
35 (describe-package-1): Fix "incompat" handling.
36
372015-02-13 Lars Ingebrigtsen <larsi@gnus.org>
38
39 * net/rfc2104.el: Moved here from lisp/gnus.
40
412015-02-13 Magnus Henoch <magnus.henoch@gmail.com>
42
43 * net/sasl-scram-rfc.el: New file.
44
45 * net/sasl.el (sasl-mechanisms): Remove SCRAM-MD5.
46 Add SCRAM-SHA-1 first.
47 (sasl-mechanism-alist): Remove SCRAM-MD5 entry. Add SCRAM-SHA-1
48 entry (bug#17636).
49
502015-02-13 Lars Ingebrigtsen <larsi@gnus.org>
51
52 * net/shr.el (shr-tag-li): Speed up rendering pages with lots of
53 <ul>.
54
552015-02-12 Oleh Krehel <ohwoeowho@gmail.com>
56
57 * progmodes/gdb-mi.el (gdb-display-io-nopopup): New defcustom.
58 (gdb-inferior-filter): Don't pop up the buried output buffer when
59 `gdb-display-io-nopopup' is non-nil.
60 5
612015-02-12 Fabián Ezequiel Gallina <fgallina@gnu.org> 62015-02-12 Fabián Ezequiel Gallina <fgallina@gnu.org>
62 7
63 python.el: Allow killing shell buffer if process is dead. (Bug#19823) 8 python.el: Allow killing shell buffer if process is dead. (Bug#19823)
64 9
65 * progmodes/python.el (python-shell-font-lock-kill-buffer): 10 * progmodes/python.el (python-shell-font-lock-kill-buffer): Don't
66 Don't require a running process. 11 require a running process.
67 (python-shell-font-lock-post-command-hook): Fontify only if the 12 (python-shell-font-lock-post-command-hook): Fontify only if the
68 shell process is running. 13 shell process is running.
69 14
diff --git a/lisp/net/tramp-sh.el b/lisp/net/tramp-sh.el
index 45050cdd77a..f3fdb63bb9e 100644
--- a/lisp/net/tramp-sh.el
+++ b/lisp/net/tramp-sh.el
@@ -475,7 +475,7 @@ as given in your `~/.profile'."
475 ,(format "TERM=%s" tramp-terminal-type) 475 ,(format "TERM=%s" tramp-terminal-type)
476 "EMACS=t" ;; Deprecated. 476 "EMACS=t" ;; Deprecated.
477 ,(format "INSIDE_EMACS='%s,tramp:%s'" emacs-version tramp-version) 477 ,(format "INSIDE_EMACS='%s,tramp:%s'" emacs-version tramp-version)
478 "CDPATH=" "HISTORY=" "MAIL=" "MAILCHECK=" "MAILPATH=" "PAGER=\"\"" 478 "CDPATH=" "HISTORY=" "MAIL=" "MAILCHECK=" "MAILPATH=" "PAGER=cat"
479 "autocorrect=" "correct=") 479 "autocorrect=" "correct=")
480 "List of environment variables to be set on the remote host. 480 "List of environment variables to be set on the remote host.
481 481