]> git.eshelyaron.com Git - emacs.git/commitdiff
(make-frame-on-display): Fix previous change.
authorRichard M. Stallman <rms@gnu.org>
Mon, 25 May 1998 16:45:33 +0000 (16:45 +0000)
committerRichard M. Stallman <rms@gnu.org>
Mon, 25 May 1998 16:45:33 +0000 (16:45 +0000)
lisp/frame.el

index b6fcf8ab7fea129184dbe8e4b809bda710c43f57..fc8b6a27caf9dc3d5e37fe75016c56f734b76d03 100644 (file)
@@ -414,8 +414,8 @@ These supersede the values given in `default-frame-alist'."
   "Make a frame on display DISPLAY.
 The optional second argument PARAMETERS specifies additional frame parameters."
   (interactive "sMake frame on display: ")
-  (or (string-match "\\`[^:]+:[0-9]+\\(:[0-9]+\\)?\\'" display)
-      (error "Invalid display, not HOST:SERVER or HOST:SERVER:SCREEN"))
+  (or (string-match "\\`[^:]*:[0-9]+\\(\\.[0-9]+\\)?\\'" display)
+      (error "Invalid display, not HOST:SERVER or HOST:SERVER.SCREEN"))
   (make-frame (cons (cons 'display display) parameters)))
 
 (defun make-frame-command ()