* lisp/emacs-lisp/cl-macs.el (cl-struct-slot-offset): Mark as pure.
(cl--set-elt): Don't proclaim as inline. (cl-struct-slot-value): Remove explicit gv-setter and compiler-macro. Define as inlinable instead. (cl-struct-set-slot-value): Remove. * doc/misc/cl.texi (Structures): Remove cl-struct-set-slot-value. * lisp/emacs-lisp/cl-lib.el (cl--set-elt): Remove. * lisp/emacs-lisp/cl-seq.el (cl-replace, cl-substitute, cl-nsubstitute): Use setf instead.
This commit is contained in:
parent
44faec1788
commit
d6f14ca729
7 changed files with 27 additions and 62 deletions
|
@ -152,9 +152,6 @@ an element already on the list.
|
|||
`(setq ,place (cl-adjoin ,x ,place ,@keys)))
|
||||
`(cl-callf2 cl-adjoin ,x ,place ,@keys)))
|
||||
|
||||
(defun cl--set-elt (seq n val)
|
||||
(if (listp seq) (setcar (nthcdr n seq) val) (aset seq n val)))
|
||||
|
||||
(defun cl--set-buffer-substring (start end val)
|
||||
(save-excursion (delete-region start end)
|
||||
(goto-char start)
|
||||
|
|
|
@ -2621,6 +2621,7 @@ does not contain SLOT-NAME."
|
|||
:key #'car :test #'eq)
|
||||
(error "struct %s has no slot %s" struct-type slot-name)))
|
||||
(put 'cl-struct-slot-offset 'side-effect-free t)
|
||||
(put 'cl-struct-slot-offset 'pure t)
|
||||
|
||||
(defvar byte-compile-function-environment)
|
||||
(defvar byte-compile-macro-environment)
|
||||
|
@ -2907,7 +2908,7 @@ The function's arguments should be treated as immutable.
|
|||
|
||||
;;; Things that are inline.
|
||||
(cl-proclaim '(inline cl-acons cl-map cl-concatenate cl-notany
|
||||
cl-notevery cl--set-elt cl-revappend cl-nreconc gethash))
|
||||
cl-notevery cl-revappend cl-nreconc gethash))
|
||||
|
||||
;;; Things that are side-effect-free.
|
||||
(mapc (lambda (x) (put x 'side-effect-free t))
|
||||
|
@ -2932,9 +2933,11 @@ The type name can then be used in `cl-typecase', `cl-check-type', etc."
|
|||
(cl-function (lambda (&cl-defs '('*) ,@arglist) ,@body)))))
|
||||
|
||||
;;; Additional functions that we can now define because we've defined
|
||||
;;; `cl-define-compiler-macro' and `cl-typep'.
|
||||
;;; `cl-defsubst' and `cl-typep'.
|
||||
|
||||
(defun cl-struct-slot-value (struct-type slot-name inst)
|
||||
(cl-defsubst cl-struct-slot-value (struct-type slot-name inst)
|
||||
;; The use of `cl-defsubst' here gives us both a compiler-macro
|
||||
;; and a gv-expander "for free".
|
||||
"Return the value of slot SLOT-NAME in INST of STRUCT-TYPE.
|
||||
STRUCT and SLOT-NAME are symbols. INST is a structure instance."
|
||||
(unless (cl-typep inst struct-type)
|
||||
|
@ -2942,45 +2945,6 @@ STRUCT and SLOT-NAME are symbols. INST is a structure instance."
|
|||
(elt inst (cl-struct-slot-offset struct-type slot-name)))
|
||||
(put 'cl-struct-slot-value 'side-effect-free t)
|
||||
|
||||
(defun cl-struct-set-slot-value (struct-type slot-name inst value)
|
||||
"Set the value of slot SLOT-NAME in INST of STRUCT-TYPE.
|
||||
STRUCT and SLOT-NAME are symbols. INST is a structure instance.
|
||||
VALUE is the value to which to set the given slot. Return
|
||||
VALUE."
|
||||
(unless (cl-typep inst struct-type)
|
||||
(signal 'wrong-type-argument (list struct-type inst)))
|
||||
(setf (elt inst (cl-struct-slot-offset struct-type slot-name)) value))
|
||||
|
||||
(gv-define-simple-setter cl-struct-slot-value cl-struct-set-slot-value)
|
||||
|
||||
(cl-define-compiler-macro cl-struct-slot-value
|
||||
(&whole orig struct-type slot-name inst)
|
||||
(or (let* ((struct-type (cl--const-expr-val struct-type))
|
||||
(slot-name (cl--const-expr-val slot-name)))
|
||||
(and struct-type (symbolp struct-type)
|
||||
slot-name (symbolp slot-name)
|
||||
(assq slot-name (cl-struct-slot-info struct-type))
|
||||
(let ((idx (cl-struct-slot-offset struct-type slot-name)))
|
||||
(cl-ecase (cl-struct-sequence-type struct-type)
|
||||
(vector `(aref (cl-the ,struct-type ,inst) ,idx))
|
||||
(list `(nth ,idx (cl-the ,struct-type ,inst)))))))
|
||||
orig))
|
||||
|
||||
(cl-define-compiler-macro cl-struct-set-slot-value
|
||||
(&whole orig struct-type slot-name inst value)
|
||||
(or (let* ((struct-type (cl--const-expr-val struct-type))
|
||||
(slot-name (cl--const-expr-val slot-name)))
|
||||
(and struct-type (symbolp struct-type)
|
||||
slot-name (symbolp slot-name)
|
||||
(assq slot-name (cl-struct-slot-info struct-type))
|
||||
(let ((idx (cl-struct-slot-offset struct-type slot-name)))
|
||||
(cl-ecase (cl-struct-sequence-type struct-type)
|
||||
(vector `(setf (aref (cl-the ,struct-type ,inst) ,idx)
|
||||
,value))
|
||||
(list `(setf (nth ,idx (cl-the ,struct-type ,inst))
|
||||
,value))))))
|
||||
orig))
|
||||
|
||||
(run-hooks 'cl-macs-load-hook)
|
||||
|
||||
;; Local variables:
|
||||
|
|
|
@ -166,7 +166,7 @@ SEQ1 is destructively modified, then returned.
|
|||
(cl-n (min (- (or cl-end1 cl-len) cl-start1)
|
||||
(- (or cl-end2 cl-len) cl-start2))))
|
||||
(while (>= (setq cl-n (1- cl-n)) 0)
|
||||
(cl--set-elt cl-seq1 (+ cl-start1 cl-n)
|
||||
(setf (elt cl-seq1 (+ cl-start1 cl-n))
|
||||
(elt cl-seq2 (+ cl-start2 cl-n))))))
|
||||
(if (listp cl-seq1)
|
||||
(let ((cl-p1 (nthcdr cl-start1 cl-seq1))
|
||||
|
@ -392,7 +392,7 @@ to avoid corrupting the original SEQ.
|
|||
cl-seq
|
||||
(setq cl-seq (copy-sequence cl-seq))
|
||||
(or cl-from-end
|
||||
(progn (cl--set-elt cl-seq cl-i cl-new)
|
||||
(progn (setf (elt cl-seq cl-i) cl-new)
|
||||
(setq cl-i (1+ cl-i) cl-count (1- cl-count))))
|
||||
(apply 'cl-nsubstitute cl-new cl-old cl-seq :count cl-count
|
||||
:start cl-i cl-keys))))))
|
||||
|
@ -439,7 +439,7 @@ This is a destructive function; it reuses the storage of SEQ whenever possible.
|
|||
(setq cl-end (1- cl-end))
|
||||
(if (cl--check-test cl-old (elt cl-seq cl-end))
|
||||
(progn
|
||||
(cl--set-elt cl-seq cl-end cl-new)
|
||||
(setf (elt cl-seq cl-end) cl-new)
|
||||
(setq cl-count (1- cl-count)))))
|
||||
(while (and (< cl-start cl-end) (> cl-count 0))
|
||||
(if (cl--check-test cl-old (aref cl-seq cl-start))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue