chiark / gitweb /
emacs: Update and patch more
[termux-packages] / packages / emacs / lisp-loadup.el.patch.beforehostbuild
1 diff -u -r ../emacs-25.0.92/lisp/loadup.el ./lisp/loadup.el
2 --- ../emacs-25.0.92/lisp/loadup.el     2016-03-02 05:21:42.000000000 -0500
3 +++ ./lisp/loadup.el    2016-03-25 21:40:48.314906360 -0400
4 @@ -1,3 +1,7 @@
5 +;; Termux patch: See
6 +;; https://lists.gnu.org/archive/html/bug-gnu-emacs/2016-03/msg00471.html
7 +(setq-default bidi-display-reordering nil)
8 +
9  ;;; loadup.el --- load up standardly loaded Lisp files for Emacs
10  
11  ;; Copyright (C) 1985-1986, 1992, 1994, 2001-2016 Free Software
12 @@ -110,6 +114,12 @@
13  (load "format")
14  (load "bindings")
15  (load "window")  ; Needed here for `replace-buffer-in-windows'.
16 +;; Termux patch: See
17 +;; https://lists.gnu.org/archive/html/bug-gnu-emacs/2016-03/msg00679.html
18 +;; We are now capable of resizing the mini-windows, so give the
19 +;; variable its advertised default value (it starts as nil, see
20 +;; xdisp.c).
21 +(setq resize-mini-windows 'grow-only)
22  (setq load-source-file-function 'load-with-code-conversion)
23  (load "files")
24  
25 @@ -465,3 +475,7 @@
26  ;; End:
27  
28  ;;; loadup.el ends here
29 +
30 +;; Termux patch: See
31 +;; https://lists.gnu.org/archive/html/bug-gnu-emacs/2016-03/msg00471.html
32 +(setq-default bidi-display-reordering t)