From 69135f12970865d9d78dd4054f06afbce40c56c0 Mon Sep 17 00:00:00 2001 From: Juanma Barranquero Date: Fri, 7 Nov 2008 14:52:02 +0000 Subject: * frame.el (make-frame-on-display): Use `string-match-p'. --- lisp/ChangeLog | 4 ++++ lisp/frame.el | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 5ae59c620a..9508ebe96e 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2008-11-07 Juanma Barranquero + + * frame.el (make-frame-on-display): Use `string-match-p'. + 2008-11-07 Glenn Morris * progmodes/cc-defs.el (cl-macroexpand-all): Fix declaration. diff --git a/lisp/frame.el b/lisp/frame.el index ddd4aea88b..316ab36cae 100644 --- a/lisp/frame.el +++ b/lisp/frame.el @@ -620,7 +620,7 @@ The optional argument PARAMETERS specifies additional frame parameters." ;; On Windows, ignore DISPLAY. (make-frame parameters)) (t - (unless (string-match "\\`[^:]*:[0-9]+\\(\\.[0-9]+\\)?\\'" display) + (unless (string-match-p "\\`[^:]*:[0-9]+\\(\\.[0-9]+\\)?\\'" display) (error "Invalid display, not HOST:SERVER or HOST:SERVER.SCREEN")) (when (and (boundp 'x-initialized) (not x-initialized)) (setq x-display-name display) -- cgit v1.2.3