-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Changes to support UNICODE in AutoCAD 2021 and later. The global vari…
…able *LISPSYS* holds the value of the system variable LISPSYS and is set to -1 in AutoCAD 2020 and earlier. If *LISPSYS* has a value of 1 or 2, the multibyte character is processed in the AutoLISP standard.
- Loading branch information
1 parent
d041682
commit 53157be
Showing
6 changed files
with
64 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
;;;(include '*LISPSYS* "./common/LISPSYS") | ||
|
||
;;; *LISPSYS* : integer (The value of (getvar "LISPSYS")) or -1 | ||
|
||
;;; +------------------------------------------------------+ | ||
;;; Copyright (c) 2020 manual chair japan | ||
;;; Released under the MIT license | ||
;;; https://opensource.org/licenses/mit-license.php | ||
;;; +------------------------------------------------------+ | ||
|
||
(include 'default "./common/default") | ||
|
||
(setq *LISPSYS* (default (getvar "LISPSYS") '-1)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters