diff options
author | Daniel Colascione <dancol@dancol.org> | 2014-02-26 13:31:22 -0800 |
---|---|---|
committer | Daniel Colascione <dancol@dancol.org> | 2014-02-26 13:31:22 -0800 |
commit | 675cab2c1b7343a952c87ebcbed08e07d6a55d52 (patch) | |
tree | 54e6d1c66f4e180e333ba0107af255ce5da34b0e /lisp/minibuffer.el | |
parent | 3b48a331d19b0eddf5adf0a3c82d8283c950df6f (diff) | |
download | emacs-675cab2c1b7343a952c87ebcbed08e07d6a55d52.tar.gz |
Fix indentation
Diffstat (limited to 'lisp/minibuffer.el')
-rw-r--r-- | lisp/minibuffer.el | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lisp/minibuffer.el b/lisp/minibuffer.el index 737172e359f..95e45260f85 100644 --- a/lisp/minibuffer.el +++ b/lisp/minibuffer.el @@ -850,12 +850,12 @@ completing buffer and file names, respectively." (setq table (pop new)) (setq point (pop new)) (pop new)))) - (result - (completion--some (lambda (style) - (funcall (nth n (assq style - completion-styles-alist)) - string table pred point)) - (completion--styles metadata)))) + (result + (completion--some (lambda (style) + (funcall (nth n (assq style + completion-styles-alist)) + string table pred point)) + (completion--styles metadata)))) (if requote (funcall requote result n) result))) |