diff options
| author | Paul Eggert | 2016-05-01 18:07:56 -0700 |
|---|---|---|
| committer | Paul Eggert | 2016-05-01 18:07:56 -0700 |
| commit | b57c1741abfb95da1dc6c165339551daff2ca3e1 (patch) | |
| tree | d3b51835457ca49fe59b311b5c72ee9cd272414d | |
| parent | 309cefe0c2ecabc4ae10d6b86141b92f7c14e74e (diff) | |
| parent | 5a952eb7f6a6b2a0a050cba618a4424e638a861a (diff) | |
| download | emacs-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/NEWS | 6 | ||||
| -rw-r--r-- | lisp/bookmark.el | 8 | ||||
| -rw-r--r-- | src/image.c | 3 |
3 files changed, 12 insertions, 5 deletions
| @@ -2462,6 +2462,12 @@ non-native NS fullscreen. The default is nil. Set to t to enable | |||
| 2462 | animation when entering and leaving fullscreen. For native OSX fullscreen | 2462 | animation when entering and leaving fullscreen. For native OSX fullscreen |
| 2463 | this has no effect. | 2463 | this has no effect. |
| 2464 | 2464 | ||
| 2465 | ** On the OS X Cocoa ("Nextstep") port, multicolor font (such as color | ||
| 2466 | emoji) display is disabled. This feature was accidentally added when | ||
| 2467 | Emacs 24.4 included the new Core Text based font backend code that was | ||
| 2468 | originally implemented for a non-mainline port. This will be enabled | ||
| 2469 | again 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 |
| 2467 | MS-Windows application given the name of its executable program file. | 2473 | MS-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 | |||
| 74 | behavior.) | 74 | behavior.) |
| 75 | 75 | ||
| 76 | To specify the file in which to save them, modify the variable | 76 | To 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. | |||
| 1481 | If you load a file that doesn't contain a proper bookmark alist, you | 1481 | If you load a file that doesn't contain a proper bookmark alist, you |
| 1482 | will corrupt Emacs's bookmark list. Generally, you should only load | 1482 | will corrupt Emacs's bookmark list. Generally, you should only load |
| 1483 | in files that were created with the bookmark functions in the first | 1483 | in files that were created with the bookmark functions in the first |
| 1484 | place. Your own personal bookmark file, `~/.emacs.bmk', is | 1484 | place. Your own personal bookmark file, specified by the variable |
| 1485 | maintained automatically by Emacs; you shouldn't need to load it | 1485 | `bookmark-default-file', is maintained automatically by Emacs; you |
| 1486 | explicitly. | 1486 | shouldn't need to load it explicitly. |
| 1487 | 1487 | ||
| 1488 | If you load a file containing bookmarks with the same names as | 1488 | If you load a file containing bookmarks with the same names as |
| 1489 | bookmarks already present in your Emacs, the new bookmarks will get | 1489 | bookmarks 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) |