~ubuntu-elisp/emacs/+git/master:scratch/isearch-show-toggles

Last commit made on 2015-10-29
Get this branch:
git clone -b scratch/isearch-show-toggles https://git.launchpad.net/~ubuntu-elisp/emacs/+git/master

Branch merges

Branch information

Name:
scratch/isearch-show-toggles
Repository:
lp:~ubuntu-elisp/emacs/+git/master

Recent commits

0ff3145... by Artur Malabarba <email address hidden>

* test/automated/sort-tests.el: New file

Tests in this file are randomly generated and then tested with
regular, reverse, and case-fold sorting.

37d169d... by Artur Malabarba <email address hidden>

* lisp/isearch.el: Display toggles and their keys

(isearch--describe-toggles): New function.
(isearch-show-toggles): New user option.
(isearch-message-prefix): Use them.

1ddd546... by Artur Malabarba <email address hidden>

* lisp/isearch.el (isearch-define-mode-toggle): Add keyword args

(isearch--toggles): New variable.

42eb249... by Artur Malabarba <email address hidden>

* lisp/isearch.el: Delete some outdated comments

2765945... by Vibhav Pant

Fix eshell/clear not working if the output has a small line count

* lisp/eshell/esh-mode.el: (eshell/clear): Use (window-size) as the
number of newlines to be inserted. This fixes the issue where
eshell/clear wouldn't work if the prompt was not at the bottom of the
window, and the output wasn't too long.

d8f82d8... by Artur Malabarba <email address hidden>

; * etc/NEWS: Document `search-default-regexp-mode'

db31a88... by Stefan Monnier

* lisp/files.el (write-file): Use vc-refresh-state.

0cbe7a2... by Stefan Monnier

* lisp/autorevert.el (auto-revert-handler): Use vc-refresh-state.

dfa2e4a... by Stefan Monnier

* lisp/vc/pcvs.el (cvs-revert-if-needed): Use vc-refresh-state.

d5ee655... by Stefan Monnier

* lisp/emacs-lisp/macroexp.el: Tweak macroexp-if optimizations

(macroexp-unprogn): Make sure we never return an empty list.
(macroexp-if): Remove unused (and unsafe) optimization.
Optimize (if A T (if B T E)) into (if (or A B) T E) instead, which does
occur occasionally.