aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorStefan Kangas2023-10-01 15:37:06 +0200
committerStefan Kangas2023-10-01 15:37:06 +0200
commit3ef259e28a84049fdb4499c9ad81ed2c3216f76b (patch)
treed58da37bc1797c4459030d5b4fb74fbf6f67f311 /src
parent712505a82b905873dc7aeddda03423ee296edf6c (diff)
downloademacs-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.m7
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.
3922Default is t. */); 3922The proxy icon can be used to drag the file associated with the
3923current buffer to other applications, much in the same way you would
3924do it from Finder. Note that you might have to disable
3925`tool-bar-mode' to see the proxy icon.
3926
3927The 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,