<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: entsel not working properly in Visual LISP, AutoLISP and General Customization Forum</title>
    <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/entsel-not-working-properly/m-p/12045031#M28358</link>
    <description>&lt;P&gt;&lt;SPAN&gt;You need to &lt;EM&gt;complete the object selection&lt;/EM&gt; in the CHPROP command with Enter [&lt;FONT size="4"&gt;&lt;STRONG&gt;&lt;FONT color="#0000FF"&gt;""&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/FONT&gt;]:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;(command "CHPROP" e1 &lt;FONT size="4" color="#0000FF"&gt;&lt;STRONG&gt;""&lt;/STRONG&gt;&lt;/FONT&gt; "la" l1 "")&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Mon, 19 Jun 2023 20:31:37 GMT</pubDate>
    <dc:creator>Kent1Cooper</dc:creator>
    <dc:date>2023-06-19T20:31:37Z</dc:date>
    <item>
      <title>entsel not working properly</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/entsel-not-working-properly/m-p/12044984#M28357</link>
      <description>&lt;P&gt;I am writing a lisp that prompts the user to select a beam line and then it changes the layer of the line (to a layer for moment frame beams) and adds triangle blocks to each end rotated 90 degrees perpendicular to selected line.&lt;BR /&gt;When I run the lisp, it prompts to select beam line to convert to MF line but when I do it says *invalid selection* and then prompts you to "select objects" so it's not recognizing the line saved with entsel. When I proceed with "select objects" it disregards the lisp and has you change properties manually. Can anyone show me what I'm doing wrong?&lt;/P&gt;&lt;P&gt;Here is the lisp code:&lt;/P&gt;&lt;DIV&gt;(vl-load-com)&lt;/DIV&gt;&lt;DIV&gt;(defun c:b2mf (/ l0 l1 l2 e1 p1 p2 beamang)&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; (c:dunn_get_lay)&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; (setq l0 (getvar "clayer") ;get current layer&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;l1 (strcat level "_S-BEAM-MF") ;set layer for moment frame beam&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;l2 (strcat level "_S-COLS-MF") ;set layer for moment frame triangle&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;e1 (car (entsel "\nSelect Beam to Convert: ")) ;selects beam and saves to e1&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;p1 (cdr (assoc 10 (entget e1))) ;gets first point of beam from e1&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;p2 (cdr (assoc 11 (entget e1))) ;gets second point of beam from e1&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;beamang (cdr (assoc 50 (entget e1))) ;gets angle of beam e1&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; );setq&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; (while (/= e1 nil)&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; (progn&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; (command "CHPROP" e1 "la" l1 "") ;select line saved to e1 and change layer to l1&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; (setvar "clayer" l2) ;sets the layer for inserting moment frame triangles&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; (command "INSERT" "MFTRIANGLE.dwg" p1 1 1 (+ beamang 90.0)) ;insert moment triangle block at point p1 rotated 90 degrees relative to e1&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; (command "INSERT" "MFTRIANGLE.dwg" p2 1 1 (+ beamang 180.0)) ;insert moment triangle block at point p2 rotated 180 degrees relative to e1&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; );progn&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; (setq e1 (car (entsel "\nSelect Beam to Convert or &amp;lt;Enter&amp;gt; to Quit: "))&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; );while&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; (setvar "clayer" l0) ;returns current layer to l0&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; (princ "Converted to Moment Frame Beam")&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; (princ))&lt;/DIV&gt;&lt;DIV&gt;);defun&lt;/DIV&gt;</description>
      <pubDate>Mon, 19 Jun 2023 19:26:46 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/entsel-not-working-properly/m-p/12044984#M28357</guid>
      <dc:creator>rosader</dc:creator>
      <dc:date>2023-06-19T19:26:46Z</dc:date>
    </item>
    <item>
      <title>Re: entsel not working properly</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/entsel-not-working-properly/m-p/12045031#M28358</link>
      <description>&lt;P&gt;&lt;SPAN&gt;You need to &lt;EM&gt;complete the object selection&lt;/EM&gt; in the CHPROP command with Enter [&lt;FONT size="4"&gt;&lt;STRONG&gt;&lt;FONT color="#0000FF"&gt;""&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/FONT&gt;]:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;(command "CHPROP" e1 &lt;FONT size="4" color="#0000FF"&gt;&lt;STRONG&gt;""&lt;/STRONG&gt;&lt;/FONT&gt; "la" l1 "")&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 19 Jun 2023 20:31:37 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/entsel-not-working-properly/m-p/12045031#M28358</guid>
      <dc:creator>Kent1Cooper</dc:creator>
      <dc:date>2023-06-19T20:31:37Z</dc:date>
    </item>
    <item>
      <title>Re: entsel not working properly</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/entsel-not-working-properly/m-p/12045034#M28359</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/6936869"&gt;@rosader&lt;/a&gt;&amp;nbsp;hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;this is my untested fix&amp;nbsp;&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":grinning_face:"&gt;😀&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Moshe&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="lisp"&gt;(vl-load-com)

(defun c:b2mf (/ l0 l1 l2 e1 p1 p2 beamang)
 (c:dunn_get_lay)
  (setq l0 (getvar "clayer") ;get current layer
        l1 (strcat level "_S-BEAM-MF") ;set layer for moment frame beam
        l2 (strcat level "_S-COLS-MF") ;set layer for moment frame triangle
       
  );setq
  
  (while (setq e1 (car (entsel "\nSelect Beam to Convert: "))) ;selects beam and saves to e1
   (setq p1 (cdr (assoc 10 (entget e1))) ;gets first point of beam from e1
         p2 (cdr (assoc 11 (entget e1))) ;gets second point of beam from e1
         beamang (cdr (assoc 50 (entget e1))) ;gets angle of beam e1
   )
   (command "CHPROP" e1 "" "la" l1 "") ;select line saved to e1 and change layer to l1
   (setvar "clayer" l2) ;sets the layer for inserting moment frame triangles
   (command "INSERT" "MFTRIANGLE.dwg" p1 1 1 (+ beamang 90.0))  ;insert moment triangle block at point p1 rotated 90 degrees relative to e1
   (command "INSERT" "MFTRIANGLE.dwg" p2 1 1 (+ beamang 180.0)) ;insert moment triangle block at point p2 rotated 180 degrees relative to e1
  );while
    
  (setvar "clayer" l0) ;returns current layer to l0
  (princ "Converted to Moment Frame Beam")
    
  (princ)
);defun&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 19 Jun 2023 19:54:31 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/entsel-not-working-properly/m-p/12045034#M28359</guid>
      <dc:creator>Moshe-A</dc:creator>
      <dc:date>2023-06-19T19:54:31Z</dc:date>
    </item>
    <item>
      <title>Re: entsel not working properly</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/entsel-not-working-properly/m-p/12045081#M28360</link>
      <description>&lt;P&gt;It fails because right after your code request for &lt;STRONG&gt;e1&lt;/STRONG&gt; it requests entget of the following:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="general"&gt;e1 (car (entsel "\nSelect Beam to Convert: ")) ;selects beam and saves to e1
p1 (cdr (assoc 10 (entget e1))) ;gets first point of beam from e1
p2 (cdr (assoc 11 (entget e1))) ;gets second point of beam from e1
beamang (cdr (assoc 50 (entget e1))) ;gets angle of beam e1&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But if nothing is selected then &lt;STRONG&gt;p1, p2&lt;/STRONG&gt; &lt;STRONG&gt;&amp;amp; beamang&lt;/STRONG&gt; won't be retrieved...&lt;/P&gt;&lt;P&gt;Then you again request for &lt;STRONG&gt;e1&lt;/STRONG&gt; at the end of &lt;STRONG&gt;while&lt;/STRONG&gt; loop here:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="general"&gt; );progn
    (setq e1 (car (entsel "\nSelect Beam to Convert or &amp;lt;Enter&amp;gt; to Quit: "))
  );while&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But since within your &lt;STRONG&gt;while&lt;/STRONG&gt; loop you don't request for&amp;nbsp;&lt;STRONG&gt;p1, p2 &amp;amp; beamang&lt;/STRONG&gt;, then the code fails.&lt;/P&gt;&lt;P&gt;Though I cannot fully test since I don't have function&lt;STRONG&gt;&amp;nbsp;c:dunn_get_lay&lt;/STRONG&gt;, give this version a try:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="general"&gt;(defun c:b2mf (/ l0 l1 l2 e1 p1 p2 beamang)
  (vl-load-com)
  (c:dunn_get_lay)
  (setq l0 (getvar "clayer") ;get current layer
        l1 (strcat level "_S-BEAM-MF") ;set layer for moment frame beam
        l2 (strcat level "_S-COLS-MF") ;set layer for moment frame triangle
  );setq
  (while (setq e1 (car (entsel "\nSelect Beam to Convert or &amp;lt;Enter&amp;gt; to Quit: "))) ;selects beam and saves to e1
    (if (eq "LINE" (cdr(assoc 0 (entget e1)))) ; check if LINE selected
      (progn
       (setq p1 (cdr (assoc 10 (entget e1))) ;gets first point of beam from e1
             p2 (cdr (assoc 11 (entget e1))) ;gets second point of beam from e1
             beamang (cdr (assoc 50 (entget e1))) ;gets angle of beam e1
	   )
       (command "_.CHPROP" e1 "" "_la" l1 "") ;select line saved to e1 and change layer to l1
       (setvar "clayer" l2) ;sets the layer for inserting moment frame triangles
       (command "_.INSERT" "MFTRIANGLE.dwg" p1 1 1 (+ beamang 90.0)) ;insert moment triangle block at point p1 rotated 90 degrees relative to e1
       (command "_.INSERT" "MFTRIANGLE.dwg" p2 1 1 (+ beamang 180.0)) ;insert moment triangle block at point p2 rotated 180 degrees relative to e1
	  )
      (princ"\nObject Selected Not a Line.")
	) ; if
  );while
  (setvar "clayer" l0) ;returns current layer to l0
  (princ "Convert to Moment Frame Beam completed")
  (princ)
);defun&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 19 Jun 2023 20:13:27 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/entsel-not-working-properly/m-p/12045081#M28360</guid>
      <dc:creator>paullimapa</dc:creator>
      <dc:date>2023-06-19T20:13:27Z</dc:date>
    </item>
    <item>
      <title>Re: entsel not working properly</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/entsel-not-working-properly/m-p/12045133#M28361</link>
      <description>&lt;P&gt;Thank You. I tried yours and it definitely changes the layer of the line correctly now. After that though, it has you manually rotating the mf triangle block at p1 and then it does not insert the mf triangle block at p2. Does autolisp not recognize that input (+ beamang 90.0) for the rotation angle?&lt;/P&gt;</description>
      <pubDate>Mon, 19 Jun 2023 20:35:52 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/entsel-not-working-properly/m-p/12045133#M28361</guid>
      <dc:creator>rosader</dc:creator>
      <dc:date>2023-06-19T20:35:52Z</dc:date>
    </item>
    <item>
      <title>Re: entsel not working properly</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/entsel-not-working-properly/m-p/12045145#M28362</link>
      <description>&lt;P&gt;there's no 50 assoc pair for LINE objects&lt;/P&gt;&lt;P&gt;so the way to get the angle is this:&lt;/P&gt;&lt;LI-CODE lang="general"&gt;(defun RtD (r) (* 180.0 (/ r pi))) ; function to convert radians to degrees
(setq beamang (rtd(angle p1 p2))) ; returns angle of line&lt;/LI-CODE&gt;</description>
      <pubDate>Mon, 19 Jun 2023 20:42:57 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/entsel-not-working-properly/m-p/12045145#M28362</guid>
      <dc:creator>paullimapa</dc:creator>
      <dc:date>2023-06-19T20:42:57Z</dc:date>
    </item>
    <item>
      <title>Re: entsel not working properly</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/entsel-not-working-properly/m-p/12045222#M28363</link>
      <description>&lt;P&gt;I'm not sure what I'm doing wrong. I put the code in to convert radians to degrees. I did the angle of beamang based on p1 and p2 and it still wants me to manually set rotation of block.&lt;/P&gt;</description>
      <pubDate>Mon, 19 Jun 2023 21:29:54 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/entsel-not-working-properly/m-p/12045222#M28363</guid>
      <dc:creator>rosader</dc:creator>
      <dc:date>2023-06-19T21:29:54Z</dc:date>
    </item>
    <item>
      <title>Re: entsel not working properly</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/entsel-not-working-properly/m-p/12045266#M28364</link>
      <description>&lt;P&gt;does&amp;nbsp;MFTRIANGLE.dwg contain attributes?&lt;/P&gt;&lt;P&gt;post this block you want to insert in&lt;/P&gt;</description>
      <pubDate>Mon, 19 Jun 2023 22:01:09 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/entsel-not-working-properly/m-p/12045266#M28364</guid>
      <dc:creator>paullimapa</dc:creator>
      <dc:date>2023-06-19T22:01:09Z</dc:date>
    </item>
    <item>
      <title>Re: entsel not working properly</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/entsel-not-working-properly/m-p/12045278#M28365</link>
      <description>&lt;P&gt;No attributes. Here is the block&lt;/P&gt;</description>
      <pubDate>Mon, 19 Jun 2023 22:14:30 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/entsel-not-working-properly/m-p/12045278#M28365</guid>
      <dc:creator>rosader</dc:creator>
      <dc:date>2023-06-19T22:14:30Z</dc:date>
    </item>
    <item>
      <title>Re: entsel not working properly</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/entsel-not-working-properly/m-p/12045288#M28366</link>
      <description>&lt;P&gt;if block comes in with 0 rotation it'll look like this when you have a 45 degree line vs 0 degree&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="paullimapa_0-1687213346144.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1229895iF8C9595D75F92C99/image-size/medium?v=v2&amp;amp;px=400" role="button" title="paullimapa_0-1687213346144.png" alt="paullimapa_0-1687213346144.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;depending on the rotation angle you want to rotate at p1 vs p2&lt;/P&gt;&lt;P&gt;this is what you'll have to figure out to program into your code&lt;/P&gt;</description>
      <pubDate>Mon, 19 Jun 2023 22:23:30 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/entsel-not-working-properly/m-p/12045288#M28366</guid>
      <dc:creator>paullimapa</dc:creator>
      <dc:date>2023-06-19T22:23:30Z</dc:date>
    </item>
    <item>
      <title>Re: entsel not working properly</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/entsel-not-working-properly/m-p/12045986#M28367</link>
      <description>&lt;P&gt;used 2d solid instead of block. rotation or drafting of solids should be tuned.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="lisp"&gt;;************************************************************************************************************************

(defun draw_solid (point_vertex back_point_vertex)
	(vla-addsolid (vla-get-block (vla-get-activelayout (vla-get-activedocument (vlax-get-acad-object))))
				  (vlax-3d-point (trans point_vertex 1 0))
				  (vlax-3d-point (trans (polar point_vertex (- (angle point_vertex back_point_vertex) (/ pi 6)) 6) 1 0))
				  (vlax-3d-point (trans (polar point_vertex (+ (angle point_vertex back_point_vertex) (/ pi 6)) 6) 1 0))
				  (vlax-3d-point (trans (polar point_vertex (+ (angle point_vertex back_point_vertex) (/ pi 6)) 6) 1 0))
	)
)

;************************************************************************************************************************

(defun c:b2mf ( / beam beam_layer mf_triangle_layer)
	(setq beam (car (entsel "\Pick a beam line: "))
		  beam_layer (strcat (getvar 'clayer) "_S-BEAM-MF")
		  mf_triangle_layer (strcat (getvar 'clayer) "_S-COLS-MF")
	)
	(entmod (subst (cons 8 beam_layer) (assoc 8 (entget beam)) (entget beam)))
	(draw_solid (cdr (assoc 10 (entget beam))) (cdr (assoc 11 (entget beam))))
	(entmod (subst (cons 8 mf_triangle_layer) (assoc 8 (entget (entlast))) (entget (entlast))))
	(draw_solid (cdr (assoc 11 (entget beam))) (cdr (assoc 10 (entget beam))))
	(entmod (subst (cons 8 mf_triangle_layer) (assoc 8 (entget (entlast))) (entget (entlast))))
	(princ)
)

;************************************************************************************************************************&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 20 Jun 2023 10:30:13 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/entsel-not-working-properly/m-p/12045986#M28367</guid>
      <dc:creator>komondormrex</dc:creator>
      <dc:date>2023-06-20T10:30:13Z</dc:date>
    </item>
    <item>
      <title>Re: entsel not working properly</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/entsel-not-working-properly/m-p/12048197#M28368</link>
      <description>&lt;P&gt;Using pline with start width 0.0 end width the size of arrow is a alternative to solid.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SeaHaven_0-1687305097973.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1230422iC82DAE2ECEC4C236/image-size/medium?v=v2&amp;amp;px=400" role="button" title="SeaHaven_0-1687305097973.png" alt="SeaHaven_0-1687305097973.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 20 Jun 2023 23:51:40 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/entsel-not-working-properly/m-p/12048197#M28368</guid>
      <dc:creator>Sea-Haven</dc:creator>
      <dc:date>2023-06-20T23:51:40Z</dc:date>
    </item>
  </channel>
</rss>

