https://github.com/jrincayc/ucblogo-code
Revision 12004aa1c81ad9c98759212f4836c386e5017b72 authored by Joshua Cogliati on 19 October 2020, 23:18:05 UTC, committed by GitHub on 19 October 2020, 23:18:05 UTC
ISSUE-44: Manually convert ASCII buffer into wxString during copy operation so clipboard is populated
2 parent s 3b967a8 + 30201d1
Raw File
Tip revision: 12004aa1c81ad9c98759212f4836c386e5017b72 authored by Joshua Cogliati on 19 October 2020, 23:18:05 UTC
Merge pull request #58 from dmalec/ISSUE-44
Tip revision: 12004aa
copydef
COPYDEF newname oldname

	command.  Makes "newname" a procedure identical to "oldname".
	The latter may be a primitive.  If "newname" was already defined,
	its previous definition is lost.  If "newname" was already a
	primitive, the redefinition is not permitted unless the variable
	REDEFP has the value TRUE.

	Note: dialects of Logo differ as to the order of inputs to COPYDEF.
	This dialect uses "MAKE order," not "NAME order."


back to top