]> git.eshelyaron.com Git - emacs.git/commitdiff
Make rng-blank-p obsolete in favor of string-blank-p
authorStefan Kangas <stefan@marxist.se>
Tue, 9 Aug 2022 17:54:49 +0000 (19:54 +0200)
committerStefan Kangas <stefan@marxist.se>
Tue, 9 Aug 2022 19:58:00 +0000 (21:58 +0200)
* lisp/nxml/rng-util.el (rng-blank-p): Make obsolete in favor of
string-blank-p.  Update callers.

lisp/nxml/rng-match.el
lisp/nxml/rng-parse.el
lisp/nxml/rng-util.el
lisp/nxml/rng-valid.el

index e767a9333b5c35e550373f6184c833a0cab74a60..f3549681f259e8ecfce5422b6ccd092ecdc47d2c 100644 (file)
@@ -1154,7 +1154,7 @@ list may contain duplicates."
             (if (or (rng--ipattern-nullable
                      (rng-data-deriv child value))
                     (and (rng--ipattern-nullable child)
-                         (rng-blank-p value)))
+                          (string-blank-p value)))
                 (rng--ipattern-after ipattern)
               rng-not-allowed-ipattern)))
          ((eq type 'data)
index 76cb94b144c121788ce65af23d7c36fd90bb245e..1c08d77f56fad5c9b91b85adcb5fdcf7a4ead5ce 100644 (file)
@@ -62,7 +62,7 @@ be signaled in the same way as when it is not well-formed."
         (unless (rng-match-element-value (or text ""))
           (cons "Invalid data" (and text 'text))))
        ((and text
-             (not (rng-blank-p text))
+              (not (string-blank-p text))
              (not (rng-match-mixed-text)))
         (cons "Text not allowed" 'text))
        ((not start-tag)
index 74f405410acca71afbd8e0ee268562a52ef4ad53..da51e81dbe7dd1eff72ed96afe34639c31c41efd 100644 (file)
@@ -36,8 +36,6 @@
 
 (defconst rng-builtin-datatypes-uri (rng-make-datatypes-uri ""))
 
-(defun rng-blank-p (str) (string-match "\\`[ \t\n\r]*\\'" str))
-
 (defun rng-substq (new old list)
   "Replace first member of LIST (if any) that is `eq' to OLD by NEW.
 LIST is not modified."
@@ -84,13 +82,12 @@ LIST is not modified."
 
 (define-error 'rng-error nil)
 
-;; Obsolete.
-
 (defun rng-uniquify-eq (list)
   (declare (obsolete seq-uniq "28.1"))
   (seq-uniq list #'eq))
 
 (define-obsolete-function-alias 'rng-uniquify-equal #'seq-uniq "28.1")
+(define-obsolete-function-alias 'rng-blank-p #'string-blank-p "29.1")
 
 (provide 'rng-util)
 
index b9c980222e215781580166a2b65340a06ac7ea32..ad5c9c7a15c0786a31d1a175bec71941ddd0344d 100644 (file)
@@ -1275,7 +1275,7 @@ Return nil at end of buffer, t otherwise."
 
 (defun rng-segment-blank-p (segment)
   (if (car segment)
-      (rng-blank-p (car segment))
+      (string-blank-p (car segment))
     (apply #'rng-region-blank-p
           (cdr segment))))
 
@@ -1303,7 +1303,7 @@ string between START and END."
        ((not (or (and whitespace
                       (or (eq whitespace t)
                           (if value
-                              (rng-blank-p value)
+                               (string-blank-p value)
                             (rng-region-blank-p start end))))
                  (rng-match-mixed-text)))
         (rng-mark-invalid "Text not allowed" start (or end (point))))))