diff options
| author | Stefan Kangas | 2023-10-01 15:37:06 +0200 |
|---|---|---|
| committer | Stefan Kangas | 2023-10-01 15:37:06 +0200 |
| commit | 3ef259e28a84049fdb4499c9ad81ed2c3216f76b (patch) | |
| tree | d58da37bc1797c4459030d5b4fb74fbf6f67f311 /src | |
| parent | 712505a82b905873dc7aeddda03423ee296edf6c (diff) | |
| download | emacs-3ef259e28a84049fdb4499c9ad81ed2c3216f76b.tar.gz emacs-3ef259e28a84049fdb4499c9ad81ed2c3216f76b.zip | |
Improve documentation of `ns-use-proxy-icon`
* doc/emacs/macos.texi (Mac / GNUstep Customization):
* src/nsfns.m (syms_of_nsfns): Fix documentation of
'ns-use-proxy-icon'; explain what it does and how it's
used. (Bug#66190)
Diffstat (limited to 'src')
| -rw-r--r-- | src/nsfns.m | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/nsfns.m b/src/nsfns.m index 5ae2cc77bb2..1aab5a3b508 100644 --- a/src/nsfns.m +++ b/src/nsfns.m | |||
| @@ -3919,7 +3919,12 @@ be used as the image of the icon representing the frame. */); | |||
| 3919 | 3919 | ||
| 3920 | DEFVAR_BOOL ("ns-use-proxy-icon", ns_use_proxy_icon, | 3920 | DEFVAR_BOOL ("ns-use-proxy-icon", ns_use_proxy_icon, |
| 3921 | doc: /* When non-nil display a proxy icon in the titlebar. | 3921 | doc: /* When non-nil display a proxy icon in the titlebar. |
| 3922 | Default is t. */); | 3922 | The proxy icon can be used to drag the file associated with the |
| 3923 | current buffer to other applications, much in the same way you would | ||
| 3924 | do it from Finder. Note that you might have to disable | ||
| 3925 | `tool-bar-mode' to see the proxy icon. | ||
| 3926 | |||
| 3927 | The default value is t. */); | ||
| 3923 | ns_use_proxy_icon = true; | 3928 | ns_use_proxy_icon = true; |
| 3924 | 3929 | ||
| 3925 | DEFVAR_LISP ("x-max-tooltip-size", Vx_max_tooltip_size, | 3930 | DEFVAR_LISP ("x-max-tooltip-size", Vx_max_tooltip_size, |