aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2015-11-23 14:47:19 -0500
committerGlenn Morris2015-11-23 14:47:19 -0500
commitc378d6c33f751d1a0b97958f3cacfe0b07c72f58 (patch)
tree0d3d0148413a7d380c8f18af698fc69fbdfbbc79
parentea78129522f428888607151e4f91ade1f4839f3f (diff)
downloademacs-c378d6c33f751d1a0b97958f3cacfe0b07c72f58.tar.gz
emacs-c378d6c33f751d1a0b97958f3cacfe0b07c72f58.zip
; Auto-commit of ChangeLog files.
-rw-r--r--ChangeLog.2136
1 files changed, 135 insertions, 1 deletions
diff --git a/ChangeLog.2 b/ChangeLog.2
index 3d0812c2230..c7054ac0146 100644
--- a/ChangeLog.2
+++ b/ChangeLog.2
@@ -1,3 +1,137 @@
12015-11-21 Wilson Snyder <wsnyder@wsnyder.org>
2
3 verilog-mode.el: Commentary and fix pre-Emacs 21 behavior.
4
5 * verilog-mode.el (verilog-save-font-no-change-functions):
6 Commentary and fix pre-Emacs 21 behavior.
7
82015-11-19 Przemysław Wojnowski <esperanto@cumego.com>
9
10 Use obarray functions from obarray.
11
12 * lisp/abbrev.el (copy-abbrev-table, abbrev-table-p, make-abbrev-table,
13 abbrev-table-get, abbrev-table-put, abbrev-table-empty-p,
14 clear-abbrev-table, define-abbrev, abbrev--symbol, abbrev-table-menu):
15 delegate to obarray.el functions.
16 * lisp/loadup.el: load obarray before abbrev
17 * test/automated/abbrev-tests.el: new tests
18
192015-11-18 Christian Schwarzgruber <c.schwarzgruber.cs@gmail.com> (tiny change)
20
21 epa.el: Add option to replace original text
22
23 * lisp/epa.el (epa-replace-original-text): New user option.
24 (Bug#21947)
25
262015-11-18 Mark Oteiza <mvoteiza@udel.edu>
27
28 Add interactive seek command.
29
30 * lisp/mpc.el (mpc-cmd-seekcur): New function.
31 (mpc-seek-current): New command.
32 (mpc-mode-menu): Add entry for mpc-seek-current
33 (mpc-mode-map): Bind mpc-seek-current to "g"
34
352015-11-18 Mark Oteiza <mvoteiza@udel.edu>
36
37 Fix issue where a new tempfile was created every refresh
38
39 * lisp/mpc.el (mpc-format): Leave dir as relative path
40
412015-11-18 Stefan Monnier <monnier@iro.umontreal.ca>
42
43 * lisp/progmodes/cc-defs.el: Use with-silent-modifications
44
45 (c-save-buffer-state): Use with-silent-modifications when available.
46 (c--macroexpand-all): Check macroexpand-all directly rather than
47 c--mapcan-status.
48
492015-11-18 Stefan Monnier <monnier@iro.umontreal.ca>
50
51 * lisp/loadup.el: Set max-lisp-eval-depth here
52
53 * lisp/Makefile.in (BIG_STACK_DEPTH, BIG_STACK_OPTS): Remove.
54 (BYTE_COMPILE_FLAGS): Adjust accordingly.
55
562015-11-17 João Távora <joaotavora@gmail.com>
57
58 Minor fix to comment indentation and typo in last commit
59
60 * linum.el (linum-update-window): Fix comment indentation and a
61 typo.
62
632015-11-17 João Távora <joaotavora@gmail.com>
64
65 linum-mode plays more nicely with other margin-setting extensions
66
67 linum.el will only modify the left margin if it needs to, and will
68 only reset the it back to 0 if it guesses that no-one has touched that
69 margin in the meantime.
70
71 As such, this is a more of a workaround than an actual fix, but fixes
72 the problems described in bug#20674 regarding the interaction with
73 modes such as darkroom-mode and olivetti-mode.
74
75 A similar fix was commited to nlinum.el in ELPA.git's
76 e7f5f549fbfb740b911fb7f33b42381ecece56d8
77
78 * linum.el (linum-delete-overlays): Restore margins more
79 criteriously.
80 (linum-update-window): Set margins more criteriously.
81
822015-11-16 Daiki Ueno <ueno@gnu.org>
83
84 * lisp/image-mode.el: Support encrypted file
85
86 (image-toggle-display-image): Read content from the buffer instead
87 of the file, if the buffer holds a decrypted data. (Bug#21870)
88
892015-11-15 Juanma Barranquero <lekktu@gmail.com>
90
91 * lisp/progmodes/verilog-mode.el (verilog-save-buffer-state): Add backquote
92
932015-11-15 Artur Malabarba <bruce.connor.am@gmail.com>
94
95 * lisp/emacs-lisp/package.el: Fix a decoding issue
96
97 (package--with-response-buffer): Use `url-insert-buffer-contents'.
98 The previous code had some issues with decoding. Refactoring that
99 function allows us to use the decoding from url-handlers while still
100 treating both sync and async requests the same.
101
102 * lisp/url/url-handlers.el (url-insert-file-contents): Move some code to
103 `url-insert-buffer-contents'.
104 (url-insert-buffer-contents): New function
105
1062015-11-15 Artur Malabarba <bruce.connor.am@gmail.com>
107
108 * lisp/emacs-lisp/package.el: Refactor -with-work-buffer-async
109
110 (package--with-work-buffer-async): Reimplement as
111 `package--with-response-buffer'.
112 (package--with-work-buffer): Mark obsolete.
113 (package--with-response-buffer): New macro. This is a more self
114 contained and less contrived version of
115 `package--with-work-buffer-async'. It uses keyword arguments,
116 doesn't have async on the name, doesn't fallback on
117 `package--with-work-buffer', and has _much_ simpler error
118 handling.
119
120 (package--check-signature, package--download-one-archive)
121 (package-install-from-archive, describe-package-1): Use it.
122
123 (package--download-and-read-archives): Let
124 `package--download-one-archive' take care of calling
125 `package--update-downloads-in-progress'.
126
1272015-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
128
129 * lisp/progmodes/verilog-mode.el: Use with-silent-modifications
130
131 (verilog-save-buffer-state): Use with-silent-modifications when available.
132 (verilog-save-font-no-change-functions): Don't bind
133 before/after-change-functions if it's not needed.
134
12015-11-14 Xue Fuqiao <xfq.free@gmail.com> 1352015-11-14 Xue Fuqiao <xfq.free@gmail.com>
2 136
3 * CONTRIBUTE: Remove information about feature freeze. 137 * CONTRIBUTE: Remove information about feature freeze.
@@ -18998,7 +19132,7 @@
18998 19132
18999This file records repository revisions from 19133This file records repository revisions from
19000commit 9d56a21e6a696ad19ac65c4b405aeca44785884a (exclusive) to 19134commit 9d56a21e6a696ad19ac65c4b405aeca44785884a (exclusive) to
19001commit ae0653b5ab9ee223751ec389b87011963e1cbbef (inclusive). 19135commit ea78129522f428888607151e4f91ade1f4839f3f (inclusive).
19002See ChangeLog.1 for earlier changes. 19136See ChangeLog.1 for earlier changes.
19003 19137
19004;; Local Variables: 19138;; Local Variables: