aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/ChangeLog
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/ChangeLog')
-rw-r--r--lisp/ChangeLog495
1 files changed, 488 insertions, 7 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 351b6ea6cb8..255b8924784 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,484 @@
12012-09-30 Juanma Barranquero <lekktu@gmail.com>
2
3 * ido.el (ido-max-directory-size): Default to nil; the current
4 default is small for POSIX systems, and impractical on Windows 7
5 now that lstat returns directory sizes for NTFS.
6
72012-09-30 Martin Rudalics <rudalics@gmx.at>
8
9 In buffer display functions handle window-height/window-width
10 alist entries. Suggested by Juri Linkov as fix for Bug#1806.
11 * window.el (window--display-buffer): New argument ALIST. Obey
12 window-height and window-width alist entries.
13 (window--try-to-split-window): New argument ALIST. Bind
14 window-combination-limit to t when the window's size shall be
15 changed and window-combination-limit equals `window-size'.
16 (display-buffer-in-atom-window)
17 (display-buffer-in-major-side-window)
18 (display-buffer-in-side-window, display-buffer-same-window)
19 (display-buffer-reuse-window, display-buffer-pop-up-frame)
20 (display-buffer-pop-up-window, display-buffer-below-selected)
21 (display-buffer-at-bottom, display-buffer-in-previous-window)
22 (display-buffer-use-some-window): Adjust all callers of
23 window--display-buffer and window--try-to-split-window.
24 (fit-frame-to-buffer): New option.
25 (fit-window-to-buffer): Can resize frames if fit-frame-to-buffer
26 is non-nil.
27 (display-buffer-in-major-side-window): Evaluate window-height /
28 window-width alist entries.
29
30 * help.el (temp-buffer-resize-frames)
31 (temp-buffer-resize-regexps): Remove options.
32 (temp-buffer-resize-mode): Adjust doc-string.
33 (resize-temp-buffer-window): Don't consult
34 temp-buffer-resize-regexps. Use fit-frame-to-buffer instead of
35 temp-buffer-resize-frames.
36
37 * dired.el (dired-mark-pop-up): Call
38 display-buffer-below-selected with a fit-window-to-buffer alist
39 entry.
40
412012-09-30 Chong Yidong <cyd@gnu.org>
42
43 * server.el (server-host): Document the security implications.
44 (server-auth-key): Doc fix.
45
46 * startup.el (initial-buffer-choice): Doc fix.
47
48 * minibuffer.el (minibuffer-local-filename-syntax): Doc fix.
49
50 * simple.el (delete-trailing-whitespace): Avoid an unnecessary
51 restriction change.
52
53 * bindings.el (goto-map): Bind M-g TAB to move-to-column.
54
55 * help-fns.el (help-fns--obsolete): Fix last change.
56
572012-09-30 Stefan Monnier <monnier@iro.umontreal.ca>
58
59 * winner.el (winner-mode-map): Obey winner-dont-bind-my-keys here.
60 (minor-mode-map-alist): Remove redundant code.
61
62 * vc/pcvs.el (cvs-cleanup-collection): Keep entries that are currently
63 visited in a buffer.
64 (cvs-insert-visited-file): New function.
65 (find-file-hook): Use it.
66
67 * vc/pcvs-info.el (cvs-fileinfo-pp): Don't use non-existent faces.
68
69 * vc/log-edit.el (log-edit-font-lock-keywords): Ignore case to
70 chose face.
71 (log-edit-empty-buffer-p): Don't require a space after a header.
72
73 * vc/ediff-util.el (ediff-diff-at-point): Don't assume point-min==1.
74
75 * tutorial.el (help-with-tutorial): Use minibuffer-with-setup-hook.
76
77 * textmodes/text-mode.el (paragraph-indent-minor-mode): Make it
78 a proper minor-mode.
79
80 * textmodes/tex-mode.el (tex-mode-map): Don't bind paren keys.
81
822012-09-29 Glenn Morris <rgm@gnu.org>
83
84 * winner.el (winner-mode): Remove variable (let define-minor-mode
85 handle it).
86 (winner-dont-bind-my-keys, winner-boring-buffers, winner-mode-hook):
87 Doc fixes.
88 (winner-mode-leave-hook): Rename to winner-mode-off-hook.
89 (winner-mode): Use define-minor-mode.
90
91 * vc/vc-sccs.el (vc-sccs-registered): Use the progn trick to get
92 the full definition in loaddefs, rather than duplicating it.
93
94 * help-macro.el (three-step-help): No need to autoload defcustom.
95
96 * progmodes/inf-lisp.el (inferior-lisp-filter-regexp)
97 (inferior-lisp-program, inferior-lisp-load-command)
98 (inferior-lisp-prompt, inferior-lisp-mode-hook):
99 No need to autoload defcustoms.
100
101 * hippie-exp.el (hippie-expand-try-functions-list)
102 (hippie-expand-verbose, hippie-expand-dabbrev-skip-space)
103 (hippie-expand-dabbrev-as-symbol, hippie-expand-no-restriction)
104 (hippie-expand-max-buffers, hippie-expand-ignore-buffers)
105 (hippie-expand-only-buffers): No need to autoload defcustoms.
106 * progmodes/vhdl-mode.el (vhdl-line-expand):
107 Explicitly load hippie-exp, so it does not get autoloaded
108 while hippie-expand-try-functions-list is let-bound.
109
1102012-09-28 Glenn Morris <rgm@gnu.org>
111
112 * emacs-lisp/cl.el (flet): Fix case of obsolescence message.
113
114 * emacs-lisp/bytecomp.el (byte-compile-cl-file-p):
115 Only "cl.el" counts as cl these days.
116
1172012-09-28 Juri Linkov <juri@jurta.org>
118
119 Display archive errors in the echo area instead of inserting
120 to the file buffer.
121
122 * arc-mode.el (archive-extract-by-stdout): Change arg STDERR-FILE
123 to STDERR-TEST that can be a regexp matching a successful output.
124 Create a temporary file and redirect stderr to it. Search for
125 STDERR-TEST in the stderr output and display it in the echo area
126 if no match is found.
127 (archive-extract-by-file): New function like
128 `archive-extract-by-stdout' but extracting archives to files
129 and looking for successful matches in stdout. Function body is
130 mostly copied from `archive-rar-extract'.
131 (archive-rar-extract): Use `archive-extract-by-file'.
132 (archive-7z-extract): Use `archive-extract-by-stdout'. (Bug#10347)
133
1342012-09-28 Leo Liu <sdl.web@gmail.com>
135
136 * pcomplete.el (pcomplete-show-completions): Use
137 minibuffer-message to make pcomplete usable in minibuffer.
138
139 * ido.el (ido-set-matches-1): Fix 2012-09-11 change.
140
1412012-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
142
143 * type-break.el: Use lexical-binding.
144 (type-break-mode): Use define-minor-mode.
145
146 * emacs-lisp/pcase.el (pcase--mark-used): New.
147 (pcase--u1): Use it (bug#12512).
148
149 * custom.el (load-theme): Set buffer-file-name so the load is recorded
150 in load-history with the right file name.
151
1522012-09-28 Tassilo Horn <tsdh@gnu.org>
153
154 * doc-view.el (doc-view-current-cache-doc-pdf): New function.
155 (doc-view-doc->txt, doc-view-convert-current-doc): Use it.
156 (doc-view-get-bounding-box): Make bounding box slicing work for
157 ODF and DVI documents.
158
1592012-09-28 Glenn Morris <rgm@gnu.org>
160
161 * type-break.el (type-break-mode, type-break-interval)
162 (type-break-good-rest-interval, type-break-keystroke-threshold):
163 No need to autoload.
164 (type-break-good-rest-interval, type-break-keystroke-threshold):
165 Add :set-after.
166
1672012-09-28 Chong Yidong <cyd@gnu.org>
168
169 * progmodes/verilog-mode.el (verilog-auto-inst-interfaced-ports):
170 Add :version tag.
171
1722012-09-27 Stefan Monnier <monnier@iro.umontreal.ca>
173
174 * json.el (json-encode-char): Codes 127-160 aren't "ASCII printable".
175
1762012-09-27 Glenn Morris <rgm@gnu.org>
177
178 * faces.el (x-display-name): Declare (for without-x builds).
179
180 * linum.el (linum-format): Don't autoload it. Improve :type.
181
182 * progmodes/tcl.el: Don't require outline when compiling.
183 (outline-regexp, outline-level): Declare.
184 * textmodes/sgml-mode.el: Don't require outline when compiling.
185 (outline-regexp, outline-heading-end-regexp, outline-level): Declare.
186
187 * term.el (term-ansi-reset):
188 Try setting term-ansi-face-already-done to nil. (Bug#11785)
189
190 * vc/vc.el (vc-next-action): Only gripe about committing read-only
191 files for RCS and SCCS. (Bug#9781)
192
1932012-09-27 Chong Yidong <cyd@gnu.org>
194
195 * progmodes/verilog-mode.el (verilog-mode-release-emacs): Fix last
196 change; value should be t.
197
1982012-09-27 Stefan Monnier <monnier@iro.umontreal.ca>
199
200 * image-mode.el: Use lexical-binding.
201 (image-mode-winprops): Use t to stand for the window of
202 a buffer that's not displayed.
203 * doc-view.el (doc-view-new-window-function): Handle the new
204 t in winprops.
205 (doc-view-enlarge): Make it a real nop if the size is not changed.
206 (doc-view-display): Handle the case where the buffer is not (yet?)
207 displayed in any window.
208 (doc-view-saved-settings): New var.
209 (doc-view-mode): Use it.
210 (doc-view-fallback-mode): Set it.
211
212 * minibuf-eldef.el: Make it possible to replace (default ...) with [...].
213 Set lexical-binding.
214 (minibuffer-eldef-shorten-default): New var.
215 (minibuffer-default-in-prompt-regexps): Use it for new default.
216 (minibuf-eldef-setup-minibuffer): Add replacement functionality.
217
2182012-09-26 Juanma Barranquero <lekktu@gmail.com>
219
220 * international/uni-bidi.el:
221 * international/uni-category.el:
222 * international/uni-name.el:
223 * international/uni-numeric.el: Regenerate.
224
2252012-09-26 Tomohiro Matsuyama <tomo@cx4a.org>
226 Stefan Monnier <monnier@iro.umontreal.ca>
227
228 * profiler.el: New file.
229
2302012-09-26 Stefan Monnier <monnier@iro.umontreal.ca>
231
232 * emacs-lisp/testcover.el (testcover-after): Add gv-expander.
233 (testcover-reinstrument): Simplify with CSE.
234
2352012-09-26 Juanma Barranquero <lekktu@gmail.com>
236
237 * window.el (temp-buffer-window-setup): Fix typo in docstring.
238
2392012-09-25 Wilson Snyder <wsnyder@wsnyder.org>
240
241 * verilog-mode.el (verilog-auto-ascii-enum, verilog-auto-inout)
242 (verilog-auto-input, verilog-auto-insert-lisp)
243 (verilog-auto-output, verilog-auto-output-every, verilog-auto-reg)
244 (verilog-auto-reg-input, verilog-auto-tieoff, verilog-auto-undef)
245 (verilog-auto-unused, verilog-auto-wire)
246 (verilog-forward-or-insert-line): Fix AUTOs with no trailing
247 newline. Reported by Andrew Jones.
248 (verilog-auto-inst) Support expanding $clog2 in AUTOINST.
249 Reported by Brad Dobbie.
250 (verilog-batch-delete-trailing-whitespace):
251 Create verilog-batch-delete-trailing-whitespace.
252 Reported by Brad Dobbie.
253 (verilog-auto-inout-param): Support AUTOINOUTPARAM for copying
254 parameters from another module. Reported by Dan Katz.
255 (verilog-auto, verilog-auto-assign-modport)
256 (verilog-auto-inout-modport): Add AUTOASSIGNMODPORT and
257 AUTOINOUTMODPORT for UVM interface module shell generation.
258 Reported by Brad Dobbie.
259 (verilog-auto-inst-interfaced-ports): Make default nil, as more
260 standard behavior.
261 (verilog-auto): Fix AUTO parameters with parenthesis arguments.
262 Reported by Matt Martin.
263
2642012-09-25 Martin Rudalics <rudalics@gmx.at>
265
266 * window.el (window--resize-child-windows): When resizing child
267 windows proportionally, process them in reverse order to
268 preserve the "when splitting a window the new one gets the odd
269 line" behavior.
270 (window--resize-root-window-vertically): When resizing the
271 minibuffer window try to affect only windows at the bottom of the
272 frame. (Bug#12419)
273
2742012-09-25 Chong Yidong <cyd@gnu.org>
275
276 * subr.el (declare): Doc fix.
277
278 * help-fns.el (help-fns--obsolete): Handle macros properly.
279
2802012-09-25 Chong Yidong <cyd@gnu.org>
281
282 * bookmark.el (bookmark-jump-noselect): Use a declare form to mark
283 this function obsolete.
284
285 * calendar/cal-x.el (calendar-two-frame-setup)
286 (calendar-only-one-frame-setup, calendar-one-frame-setup):
287 * calendar/calendar.el (american-calendar, european-calendar)
288 (calendar-for-loop):
289 * comint.el (comint-dynamic-simple-complete)
290 (comint-dynamic-complete-as-filename, comint-unquote-filename):
291 * desktop.el (desktop-load-default):
292 * dired-x.el (dired-omit-here-always)
293 (dired-hack-local-variables, dired-default-directory):
294 * emacs-lisp/derived.el (derived-mode-class):
295 * emacs-lisp/timer.el (timer-set-time-with-usecs):
296 * emacs-lock.el (toggle-emacs-lock):
297 * epa.el (epa-display-verify-result):
298 * epg.el (epg-sign-keys, epg-start-sign-keys)
299 (epg-passphrase-callback-function):
300 * eshell/esh-util.el (eshell-for):
301 * eshell/eshell.el (eshell-remove-from-window-buffer-names)
302 (eshell-add-to-window-buffer-names):
303 * files.el (locate-file-completion):
304 * imenu.el (imenu-example--create-c-index)
305 (imenu-example--create-lisp-index)
306 (imenu-example--lisp-extract-index-name)
307 (imenu-example--name-and-position):
308 * international/mule-cmds.el (princ-list):
309 * international/mule-diag.el (decode-codepage-char):
310 * international/mule-util.el (detect-coding-with-priority):
311 * iswitchb.el (iswitchb-read-buffer):
312 * mail/mailalias.el (mail-complete):
313 * mail/sendmail.el (mail-sent-via):
314 * mouse.el (mouse-popup-menubar-stuff, mouse-popup-menubar)
315 (mouse-major-mode-menu):
316 * password-cache.el (password-read-and-add):
317 * pcomplete.el (pcomplete-parse-comint-arguments):
318 * progmodes/sh-script.el (sh-maybe-here-document):
319 * replace.el (query-replace-regexp-eval):
320 * savehist.el (savehist-load):
321 * simple.el (choose-completion-delete-max-match):
322 * term.el (term-dynamic-simple-complete):
323 * vc/ediff-init.el (ediff-check-version):
324 * vc/ediff-wind.el (ediff-choose-window-setup-function-automatically):
325 * vc/vc.el (vc-diff-switches-list):
326 * view.el (view-return-to-alist-update): Likewise.
327
328 * subr.el (eval-next-after-load, makehash, insert-string)
329 (assoc-ignore-representation, assoc-ignore-case): Use declare to
330 mark obsolete.
331 (mode-line-inverse-video): Variable deleted.
332
333 * international/mule-util.el (string-to-sequence): Remove.
334
335 * calendar/calendar.el (calendar-version):
336 * calendar/icalendar.el (icalendar-extract-ical-from-buffer)
337 (icalendar-convert-diary-to-ical):
338 * cus-edit.el (custom-mode):
339 * ansi-color.el (ansi-color-unfontify-region):
340 * international/latin1-disp.el (latin1-char-displayable-p):
341 * progmodes/cwarn.el (turn-on-cwarn-mode):
342 * progmodes/which-func.el (which-func-update-1):
343 Use define-obsolete-function-alias.
344
345 * net/newst-backend.el (newsticker-cache-filename):
346 * net/newst-treeview.el (newsticker-groups-filename):
347 Fix incorrect obsolescence declaration.
348
349 * allout.el (allout-passphrase-hint-string): Likewise.
350 (allout-init): Use a declare form to mark obsolete.
351
352 * emacs-lisp/byte-run.el (make-obsolete): Doc fix; emphasize that
353 this applies to functions.
354
355 * iswitchb.el (iswitchb-read-buffer): Move code of
356 iswitchb-define-mode-map here, and delete that obsolete function.
357
358 * net/snmp-mode.el (snmp-font-lock-keywords-3): Don't use obsolete
359 font-lock-reference-face.
360
3612012-09-25 Glenn Morris <rgm@gnu.org>
362
363 * buff-menu.el (Buffer-menu-name-width, Buffer-menu-size-width):
364 Doc fixes.
365
366 * eshell/em-term.el (eshell-term-name):
367 Default to term-term-name. (Bug#12485)
368
3692012-09-24 Fabián Ezequiel Gallina <fgallina@cuca>
370
371 * progmodes/python.el (python-shell-send-buffer): Better handling
372 of "if __name__ == '__main__':" conditionals when sending the buffer.
373
3742012-09-24 Glenn Morris <rgm@gnu.org>
375
376 * eshell/esh-cmd.el (eshell-find-alias-function):
377 Tighten up file-name regexp. (Bug#12499)
378
3792012-09-24 Fabián Ezequiel Gallina <fgallina@cuca>
380
381 Enhancements for triple-quote string syntax.
382 * progmodes/python.el (python-quote-syntax): Remove.
383 (python-syntax-propertize-function): New value.
384 (python-syntax-count-quotes, python-syntax-stringify):
385 New functions.
386
3872012-09-24 Chong Yidong <cyd@gnu.org>
388
389 * mail/supercite.el (sc-version): Remove obsolete function.
390 (sc-describe): Don't mark as obsolete, since it is bound.
391 (sc-submit-bug-report): Remove.
392
393 * vc/log-edit.el (cvs-changelog-full-paragraphs)
394 (cvs-commit-buffer-require-final-newline): Remove.
395 (log-edit-require-final-newline)
396 (log-edit-changelog-full-paragraphs): Default to t.
397
398 * vc/pcvs-defs.el (cvs-diff-buffer-name, cvs-diff-ignore-marks)
399 * vc/vc-hooks.el (vc-ignore-vc-files, vc-master-templates)
400 * vc/vc.el (vc-checkout-carefully): Likewise.
401
402 * vc/emerge.el (emerge-mode): Make it an obsolete alias.
403 (emerge-version): Remove.
404
405 * progmodes/compile.el (compile-internal): Remove.
406 (compilation-parse-errors-function): Fix typo.
407
408 * international/mule.el (set-char-table-default): Remove.
409 (set-coding-priority, make-coding-system, generic-char-p)
410 (charset-list, charset-bytes, charset-id): Use declare to mark
411 functions as obsolete.
412
413 * vc/pcvs-defs.el (cvs-buffer-name-alist)
414 (cvs-invert-ignore-marks): Remove references to obsolete vars.
415 * vc/vc-hooks.el (vc-default-registered): Don't use
416 vc-master-templates.
417
418 * font-lock.el (font-lock-reference-face):
419 Use define-obsolete-variable-alias.
420
421 * generic-x.el (rul-generic-mode): Use font-lock-constant-face.
422 * calendar/calendar.el (calendar-font-lock-keywords):
423 * calendar/diary-lib.el (diary-font-lock-keywords)
424 (diary-fancy-font-lock-keywords):
425 * textmodes/reftex-sel.el (reftex-insert-docstruct):
426 * textmodes/reftex-index.el (reftex-insert-index):
427 * textmodes/reftex-cite.el (reftex-format-bib-entry):
428 * progmodes/ruby-mode.el (ruby-font-lock-keywords):
429 * progmodes/ps-mode.el (ps-mode-font-lock-keywords-1):
430 * progmodes/prolog.el (prolog-font-lock-keywords):
431 * progmodes/idlwave.el (idlwave-idl-keywords):
432 * progmodes/ada-mode.el (ada-font-lock-keywords):
433 * net/snmp-mode.el (snmp-font-lock-keywords-3): Likewise.
434
4352012-09-24 Glenn Morris <rgm@gnu.org>
436
437 * mail/emacsbug.el (report-emacs-bug): Include `lsb_release -d'.
438
4392012-09-23 Fabián Ezequiel Gallina <fgallina@cuca>
440
441 * progmodes/python.el (python-indent-line): More consistent cursor
442 movement behavior.
443
4442012-09-23 Stefan Merten <smerten@oekonux.de>
445
446 * textmodes/rst.el: Fix compiler warning.
447
4482012-09-23 Roland Winkler <winkler@gnu.org>
449
450 * textmodes/bibtex.el (bibtex-autokey-transcriptions):
451 Transcribe also LaTeX hyphenation.
452 (bibtex-reformat): Bug fix. Do not quote twice the elements of
453 bibtex-reformat-previous-options.
454
4552012-09-23 Roland Winkler <winkler@gnu.org>
456
457 * proced.el (proced-renice-command): New variable.
458 (proced-marked-processes): New function.
459 (proced-with-processes-buffer): New macro.
460 (proced-send-signal): Use them.
461 (proced-renice): New command bound to r.
462
4632012-09-23 Roland Winkler <winkler@gnu.org>
464
465 * ibuf-ext.el (ibuffer-switch-to-saved-filter-groups): If list
466 ibuffer-saved-filter-groups has one element, shortcut the call of
467 completing-read. (Bug#12331)
468
4692012-09-23 Chong Yidong <cyd@gnu.org>
470
471 * bindings.el (mode-line-toggle-read-only):
472 * bs.el (bs-toggle-readonly):
473 * buff-menu.el (Buffer-menu-toggle-read-only):
474 * dired.el (dired-toggle-read-only):
475 * ibuffer.el (ibuffer-do-toggle-read-only): Use read-only-mode.
476
4772012-09-23 Chong Yidong <cyd@gnu.org>
478
479 * image.el (image-type-available-p): Adapt to init-image-library
480 argument changes.
481
12012-09-22 Juri Linkov <juri@jurta.org> 4822012-09-22 Juri Linkov <juri@jurta.org>
2 483
3 * dired.el (dired-mode-map): Add [remap read-only-mode] for 484 * dired.el (dired-mode-map): Add [remap read-only-mode] for
@@ -45,7 +526,7 @@
45 526
462012-09-22 Stefan Merten <smerten@oekonux.de> 5272012-09-22 Stefan Merten <smerten@oekonux.de>
47 528
48 * rst.el: Revamp section title faces. 529 * textmodes/rst.el: Revamp section title faces.
49 (rst-official-version) 530 (rst-official-version)
50 (rst-package-emacs-version-alist): Sync with official version 531 (rst-package-emacs-version-alist): Sync with official version
51 V1.4.0. 532 V1.4.0.
@@ -120,15 +601,15 @@
120 601
1212012-09-20 Stefan Merten <smerten@oekonux.de> 6022012-09-20 Stefan Merten <smerten@oekonux.de>
122 603
123 * rst.el: Integrate support for `imenu' and `which-function'. 604 * textmodes/rst.el: Integrate support for `imenu' and `which-function'.
124 Fixes feature request bug#11711. 605 Fixes feature request bug#11711.
125 (rst-mode): Create `imenu-create-index-function'. 606 (rst-mode): Create `imenu-create-index-function'.
126 (rst-get-stripped-line): Delete after refactoring. 607 (rst-get-stripped-line): Delete after refactoring.
127 (rst-section-tree, rst-section-tree-rec) 608 (rst-section-tree, rst-section-tree-rec)
128 (rst-section-tree-point): Refactor and document properly. 609 (rst-section-tree-point): Refactor and document properly.
129 (rst-imenu-find-adornments-for-position) 610 (rst-imenu-find-adornments-for-position)
130 (rst-imenu-convert-cell, rst-imenu-create-index): New 611 (rst-imenu-convert-cell, rst-imenu-create-index):
131 function. 612 New function.
132 613
1332012-09-20 Stefan Monnier <monnier@iro.umontreal.ca> 6142012-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
134 615
@@ -260,7 +741,7 @@
260 741
2612012-09-17 Stefan Merten <smerten@oekonux.de> 7422012-09-17 Stefan Merten <smerten@oekonux.de>
262 743
263 * rst.el: Add support for `testcover'. 744 * textmodes/rst.el: Add support for `testcover'.
264 (rst-defcustom-testcover, rst-testcover-add-compose) 745 (rst-defcustom-testcover, rst-testcover-add-compose)
265 (rst-testcover-add-1value): New functions. 746 (rst-testcover-add-1value): New functions.
266 (rst-portable-mark-active-p): Replace by `use-region-p'. 747 (rst-portable-mark-active-p): Replace by `use-region-p'.
@@ -2096,7 +2577,7 @@
2096 2577
20972012-07-30 Stefan Merten <smerten@oekonux.de> 25782012-07-30 Stefan Merten <smerten@oekonux.de>
2098 2579
2099 * rst.el: Silence `checkdoc-ispell'. 2580 * textmodes/rst.el: Silence `checkdoc-ispell'.
2100 (rst-cvs-header, rst-svn-rev, rst-svn-timestamp) 2581 (rst-cvs-header, rst-svn-rev, rst-svn-timestamp)
2101 (rst-official-version, rst-official-cvs-rev) 2582 (rst-official-version, rst-official-cvs-rev)
2102 (rst-package-emacs-version-alist): Update to upstream V1.3.1. 2583 (rst-package-emacs-version-alist): Update to upstream V1.3.1.
@@ -9488,7 +9969,7 @@
9488 Declare as obsolete. 9969 Declare as obsolete.
9489 (ns-get-pasteboard, ns-paste-secondary): 9970 (ns-get-pasteboard, ns-paste-secondary):
9490 Use ns-get-selection-internal. 9971 Use ns-get-selection-internal.
9491 (ns-set-pasteboard, ns-copy-including-secondary): 9972 (ns-set-pasteboard, ns-copy-including-secondary):
9492 Use ns-store-selection-internal. 9973 Use ns-store-selection-internal.
9493 9974
94942011-12-17 Chong Yidong <cyd@gnu.org> 99752011-12-17 Chong Yidong <cyd@gnu.org>