diff options
| author | Noam Postavsky | 2018-02-06 12:20:37 -0500 |
|---|---|---|
| committer | Noam Postavsky | 2018-02-08 19:10:11 -0500 |
| commit | 19fa6d561abd91e9ad71a6799c5ed4f582c9f351 (patch) | |
| tree | bd5aba726efbafd00c5b3638dd461ada8f7f793d /lisp | |
| parent | 979944c9b03ed168c85b65f880937adac0a2bf16 (diff) | |
| download | emacs-19fa6d561abd91e9ad71a6799c5ed4f582c9f351.tar.gz emacs-19fa6d561abd91e9ad71a6799c5ed4f582c9f351.zip | |
Fix --no-build-details for w32 and macOS
* src/w32term.c (w32_initialize_display_info): Handle nil system-name.
* lisp/term/ns-win.el (window-system-initialization): Don't pass nil
to `x-open-connection'.
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/term/ns-win.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/term/ns-win.el b/lisp/term/ns-win.el index 618041dbe27..76b1a414560 100644 --- a/lisp/term/ns-win.el +++ b/lisp/term/ns-win.el | |||
| @@ -834,7 +834,7 @@ See the documentation of `create-fontset-from-fontset-spec' for the format.") | |||
| 834 | (format "Creation of the standard fontset failed: %s" err) | 834 | (format "Creation of the standard fontset failed: %s" err) |
| 835 | :error))) | 835 | :error))) |
| 836 | 836 | ||
| 837 | (x-open-connection (system-name) x-command-line-resources t) | 837 | (x-open-connection (or (system-name) "") x-command-line-resources t) |
| 838 | 838 | ||
| 839 | ;; Add GNUstep menu items Services, Hide and Quit. Rename Help to Info | 839 | ;; Add GNUstep menu items Services, Hide and Quit. Rename Help to Info |
| 840 | ;; and put it first (i.e. omit from menu-bar-final-items. | 840 | ;; and put it first (i.e. omit from menu-bar-final-items. |