diff options
| author | Glenn Morris | 2009-09-11 03:41:26 +0000 |
|---|---|---|
| committer | Glenn Morris | 2009-09-11 03:41:26 +0000 |
| commit | 5cc443fe03d5cdda29bb905731b0c2921cc3e89f (patch) | |
| tree | 924e38a3255230db21ebdcf2bc10be87254c2530 | |
| parent | 7e596924ac189b436079af629da4a1ef81de6f73 (diff) | |
| download | emacs-5cc443fe03d5cdda29bb905731b0c2921cc3e89f.tar.gz emacs-5cc443fe03d5cdda29bb905731b0c2921cc3e89f.zip | |
(x-display-name, x-setup-function-keys): Unify doc-strings with X versions.
| -rw-r--r-- | lisp/ChangeLog | 22 | ||||
| -rw-r--r-- | lisp/term/ns-win.el | 6 |
2 files changed, 26 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 33819ec6466..f9c5b000271 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,25 @@ | |||
| 1 | 2009-09-11 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * apropos.el (apropos-documentation-check-doc-file): Exclude unbound | ||
| 4 | functions and variables, since they must be stuff specific to some other | ||
| 5 | platform. | ||
| 6 | (apropos-print): Make mouse-click message less specific about button. | ||
| 7 | |||
| 8 | * emacs-lisp/cl-macs.el (define-compiler-macro): Add a property | ||
| 9 | that records where a macro was defined. | ||
| 10 | * help-fns.el (describe-function-1): Mention if a function has a | ||
| 11 | compiler-macro. | ||
| 12 | * help-mode.el (help-function-cmacro): New button. | ||
| 13 | |||
| 14 | * locate.el (top-level): Always require dired. | ||
| 15 | (locate-mode-map): Initialize inside the defvar. | ||
| 16 | |||
| 17 | * net/ange-ftp.el (dired-compress-file): Declare. | ||
| 18 | (ange-ftp-dired-compress-file): Add doc string. | ||
| 19 | |||
| 20 | * term/ns-win.el (x-display-name, x-setup-function-keys): | ||
| 21 | Unify doc-strings with X versions. | ||
| 22 | |||
| 1 | 2009-09-11 Stefan Monnier <monnier@iro.umontreal.ca> | 23 | 2009-09-11 Stefan Monnier <monnier@iro.umontreal.ca> |
| 2 | 24 | ||
| 3 | * emulation/crisp.el (crisp-mode-map): Move initialization | 25 | * emulation/crisp.el (crisp-mode-map): Move initialization |
diff --git a/lisp/term/ns-win.el b/lisp/term/ns-win.el index a92a5c5305d..dd40b4b32f6 100644 --- a/lisp/term/ns-win.el +++ b/lisp/term/ns-win.el | |||
| @@ -101,7 +101,9 @@ | |||
| 101 | 101 | ||
| 102 | ;; Set (but not used?) in frame.el. | 102 | ;; Set (but not used?) in frame.el. |
| 103 | (defvar x-display-name nil | 103 | (defvar x-display-name nil |
| 104 | "The name of the Nextstep display on which Emacs was started.") | 104 | "The name of the window display on which Emacs was started. |
| 105 | On X, the display name of individual X frames is recorded in the | ||
| 106 | `display' frame parameter.") | ||
| 105 | 107 | ||
| 106 | ;; nsterm.m. | 108 | ;; nsterm.m. |
| 107 | (defvar ns-input-file) | 109 | (defvar ns-input-file) |
| @@ -309,7 +311,7 @@ The properties returned may include `top', `left', `height', and `width'." | |||
| 309 | (defalias 'do-applescript 'ns-do-applescript) | 311 | (defalias 'do-applescript 'ns-do-applescript) |
| 310 | 312 | ||
| 311 | (defun x-setup-function-keys (frame) | 313 | (defun x-setup-function-keys (frame) |
| 312 | "Set up function keys on the graphical frame FRAME." | 314 | "Set up `function-key-map' on the graphical frame FRAME." |
| 313 | (unless (terminal-parameter frame 'x-setup-function-keys) | 315 | (unless (terminal-parameter frame 'x-setup-function-keys) |
| 314 | (with-selected-frame frame | 316 | (with-selected-frame frame |
| 315 | (setq interprogram-cut-function 'x-select-text | 317 | (setq interprogram-cut-function 'x-select-text |