Changeset 15422
- Timestamp:
- 10/20/20 06:45:21 (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abcl/src/org/armedbear/lisp/pathnames.lisp
r15375 r15422 452 452 (error "~A is not a URL pathname." p)) 453 453 (let ((host (pathname-host p))) 454 (setf (getf host :scheme) v)) 455 (%invalidate-namestring p)) 454 (setf (getf host :scheme) v))) 456 455 457 456 (defsetf url-pathname-scheme set-url-pathname-scheme) … … 466 465 (error "~A is not a URL pathname." p)) 467 466 (let ((host (pathname-host p))) 468 (setf (getf host :authority) v)) 469 (%invalidate-namestring p)) 467 (setf (getf host :authority) v))) 468 470 469 471 470 (defsetf url-pathname-authority set-url-pathname-authority) … … 480 479 (error "~A is not a URL pathname." p)) 481 480 (let ((host (pathname-host p))) 482 (setf (getf host :query) v)) 483 (%invalidate-namestring p)) 481 (setf (getf host :query) v))) 484 482 485 483 (defsetf url-pathname-query set-url-pathname-query) … … 494 492 (error "~A is not a URL pathname." p)) 495 493 (let ((host (pathname-host p))) 496 (setf (getf host :fragment) v)) 497 (%invalidate-namestring p)) 494 (setf (getf host :fragment) v))) 498 495 499 496 (defsetf url-pathname-fragment set-url-pathname-fragment)
Note: See TracChangeset
for help on using the changeset viewer.