summaryrefslogtreecommitdiff
path: root/lisp/ldefs-boot.el
diff options
context:
space:
mode:
authorGlenn Morris <rgm@gnu.org>2019-02-01 06:24:20 -0500
committerGlenn Morris <rgm@gnu.org>2019-02-01 06:24:20 -0500
commitaf525f44d531a5446c3153778a1b1124f3be4828 (patch)
tree98b9171caa6d9718955dece8584e25333223c7dd /lisp/ldefs-boot.el
parent7ba8f803983fce7896042289ca47b3de4df42bb7 (diff)
downloademacs-af525f44d531a5446c3153778a1b1124f3be4828.tar.gz
; Auto-commit of loaddefs files.
Diffstat (limited to 'lisp/ldefs-boot.el')
-rw-r--r--lisp/ldefs-boot.el20
1 files changed, 17 insertions, 3 deletions
diff --git a/lisp/ldefs-boot.el b/lisp/ldefs-boot.el
index 7b7f93c3b08..fdc61eecb36 100644
--- a/lisp/ldefs-boot.el
+++ b/lisp/ldefs-boot.el
@@ -15241,7 +15241,7 @@ List of hook functions run by `grep-process-setup' (see `run-hooks').")
(custom-autoload 'grep-setup-hook "grep" t)
-(defconst grep-regexp-alist `((,(concat "^\\(?:" "\\(?1:[^
+(defconst grep-regexp-alist `((,(concat "^\\(?:" "\\(?1:[^
Regexp used to match grep hits.
See `compilation-error-regexp-alist' for format details.")
@@ -17711,13 +17711,20 @@ must be available.
(autoload 'create-image "image" "\
Create an image.
FILE-OR-DATA is an image file name or image data.
+
Optional TYPE is a symbol describing the image type. If TYPE is omitted
or nil, try to determine the image type from its first few bytes
of image data. If that doesn't work, and FILE-OR-DATA is a file name,
use its file extension as image type.
+
Optional DATA-P non-nil means FILE-OR-DATA is a string containing image data.
+
Optional PROPS are additional image attributes to assign to the image,
-like, e.g. `:mask MASK'.
+like, e.g. `:mask MASK'. If the property `:scale' is not given and the
+display has a high resolution (more exactly, when the average width of a
+character in the default font is more than 10 pixels), the image is
+automatically scaled up in proportion to the default font.
+
Value is the image created, or nil if images of type TYPE are not supported.
Images should not be larger than specified by `max-image-size'.
@@ -30122,7 +30129,14 @@ Like `mail' command, but display mail buffer in another frame.
(defvar server-name "server" "\
The name of the Emacs server, if this Emacs process creates one.
The command `server-start' makes use of this. It should not be
-changed while a server is running.")
+changed while a server is running.
+If this is a file name with no leading directories, Emacs will
+create a socket file by that name under `server-socket-dir'
+if `server-use-tcp' is nil, else under `server-auth-dir'.
+If this is an absolute file name, it specifies where the socket
+file will be created. To have emacsclient connect to the same
+socket, use the \"-s\" switch for local non-TCP sockets, and
+the \"-f\" switch otherwise.")
(custom-autoload 'server-name "server" t)