aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Eggert2016-05-01 18:07:56 -0700
committerPaul Eggert2016-05-01 18:07:56 -0700
commitb57c1741abfb95da1dc6c165339551daff2ca3e1 (patch)
treed3b51835457ca49fe59b311b5c72ee9cd272414d
parent309cefe0c2ecabc4ae10d6b86141b92f7c14e74e (diff)
parent5a952eb7f6a6b2a0a050cba618a4424e638a861a (diff)
downloademacs-b57c1741abfb95da1dc6c165339551daff2ca3e1.tar.gz
emacs-b57c1741abfb95da1dc6c165339551daff2ca3e1.zip
Merge from origin/emacs-25
5a952eb Don't mention ~/.emacs.bmk literally in doc strings c338cf3 * etc/NEWS: Explain why multicolor font display is disabled o... c30d1b4 Port to Ubuntu 16.04 --enable-gcc-warnings
-rw-r--r--etc/NEWS6
-rw-r--r--lisp/bookmark.el8
-rw-r--r--src/image.c3
3 files changed, 12 insertions, 5 deletions
diff --git a/etc/NEWS b/etc/NEWS
index bc63058de2b..3c4cf66240a 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -2462,6 +2462,12 @@ non-native NS fullscreen. The default is nil. Set to t to enable
2462animation when entering and leaving fullscreen. For native OSX fullscreen 2462animation when entering and leaving fullscreen. For native OSX fullscreen
2463this has no effect. 2463this has no effect.
2464 2464
2465** On the OS X Cocoa ("Nextstep") port, multicolor font (such as color
2466emoji) display is disabled. This feature was accidentally added when
2467Emacs 24.4 included the new Core Text based font backend code that was
2468originally implemented for a non-mainline port. This will be enabled
2469again once it is also implemented in Emacs on free operating systems.
2470
2465--- 2471---
2466** The new function 'w32-application-type' returns the type of an 2472** The new function 'w32-application-type' returns the type of an
2467MS-Windows application given the name of its executable program file. 2473MS-Windows application given the name of its executable program file.
diff --git a/lisp/bookmark.el b/lisp/bookmark.el
index c2f8cc3fbc1..f3c8b2a755f 100644
--- a/lisp/bookmark.el
+++ b/lisp/bookmark.el
@@ -74,7 +74,7 @@ bookmark is to set this variable to 1 (or 0, which produces the same
74behavior.) 74behavior.)
75 75
76To specify the file in which to save them, modify the variable 76To specify the file in which to save them, modify the variable
77`bookmark-default-file', which is `~/.emacs.bmk' by default." 77`bookmark-default-file'."
78 :type '(choice (const nil) integer (other t)) 78 :type '(choice (const nil) integer (other t))
79 :group 'bookmark) 79 :group 'bookmark)
80 80
@@ -1481,9 +1481,9 @@ while loading.
1481If you load a file that doesn't contain a proper bookmark alist, you 1481If you load a file that doesn't contain a proper bookmark alist, you
1482will corrupt Emacs's bookmark list. Generally, you should only load 1482will corrupt Emacs's bookmark list. Generally, you should only load
1483in files that were created with the bookmark functions in the first 1483in files that were created with the bookmark functions in the first
1484place. Your own personal bookmark file, `~/.emacs.bmk', is 1484place. Your own personal bookmark file, specified by the variable
1485maintained automatically by Emacs; you shouldn't need to load it 1485`bookmark-default-file', is maintained automatically by Emacs; you
1486explicitly. 1486shouldn't need to load it explicitly.
1487 1487
1488If you load a file containing bookmarks with the same names as 1488If you load a file containing bookmarks with the same names as
1489bookmarks already present in your Emacs, the new bookmarks will get 1489bookmarks already present in your Emacs, the new bookmarks will get
diff --git a/src/image.c b/src/image.c
index 2a7c2ccc82d..22bbc35fcfb 100644
--- a/src/image.c
+++ b/src/image.c
@@ -7979,7 +7979,8 @@ gif_load (struct frame *f, struct image *img)
7979 { 7979 {
7980 img->lisp_data 7980 img->lisp_data
7981 = Fcons (make_number (ext->Function), 7981 = Fcons (make_number (ext->Function),
7982 Fcons (make_unibyte_string (ext->Bytes, ext->ByteCount), 7982 Fcons (make_unibyte_string ((char *) ext->Bytes,
7983 ext->ByteCount),
7983 img->lisp_data)); 7984 img->lisp_data));
7984 if (ext->Function == GIF_LOCAL_DESCRIPTOR_EXTENSION 7985 if (ext->Function == GIF_LOCAL_DESCRIPTOR_EXTENSION
7985 && ext->ByteCount == 4) 7986 && ext->ByteCount == 4)