diff options
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/ChangeLog | 3 | ||||
| -rw-r--r-- | lisp/faces.el | 5 |
2 files changed, 8 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index cb19644cbe1..e92acb0dba0 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -8,6 +8,9 @@ | |||
| 8 | 8 | ||
| 9 | * custom.el (x-get-resource): Declare. | 9 | * custom.el (x-get-resource): Declare. |
| 10 | 10 | ||
| 11 | * faces.el (x-display-list, x-open-connection, x-get-resource): | ||
| 12 | Declare. | ||
| 13 | |||
| 11 | * frame.el (x-display-grayscale-p): Declare. | 14 | * frame.el (x-display-grayscale-p): Declare. |
| 12 | 15 | ||
| 13 | * simple.el (font-info): Declare. | 16 | * simple.el (font-info): Declare. |
diff --git a/lisp/faces.el b/lisp/faces.el index 9a34aec2549..b135755f165 100644 --- a/lisp/faces.el +++ b/lisp/faces.el | |||
| @@ -1921,6 +1921,11 @@ Return nil if there is no face." | |||
| 1921 | ;;; Frame creation. | 1921 | ;;; Frame creation. |
| 1922 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | 1922 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
| 1923 | 1923 | ||
| 1924 | (declare-function x-display-list "xfns.c" ()) | ||
| 1925 | (declare-function x-open-connection "xfns.c" | ||
| 1926 | (display &optional xrm-string must-succeed)) | ||
| 1927 | (declare-function x-get-resource "frame.c" | ||
| 1928 | (attribute class &optional component subclass)) | ||
| 1924 | (declare-function x-parse-geometry "frame.c" (string)) | 1929 | (declare-function x-parse-geometry "frame.c" (string)) |
| 1925 | (defvar x-display-name) | 1930 | (defvar x-display-name) |
| 1926 | 1931 | ||