Manuel_Kunde Posted December 9, 2021 Posted December 9, 2021 (edited) Hi all, I don't know what AutoCAD did with their updates, but since a few days my Lisp programs don't work anymore wich included special letters with a superscript (ä ü ö ß é á ...). In the command bar, for example, this text here: "Format pour l'étiquette d'expédition (79.00 x 103.00 mm)" is printed like this: Format pour l'étiquette d'expédition (79.00 x 103.00 mm). Does anyone have the same problem, what can be changed? (defun C:pagesetup_ship_1 () (command "-SEITENEINR" "DWG To PDF.pc3" "Format pour l'étiquette d'expédition (79.00 x 103.00 mm)" "M" "H" "N" "L" "1:1" "0,0" "J" "editsoft.ctb" "J" "N" "N" "N" ) ) My Syscodepage is ANSI_1252 btw. Edited December 9, 2021 by Manuel_Kunde Quote
mhupp Posted December 9, 2021 Posted December 9, 2021 When you say "is printed like this" do you mean a file is made like PDF with that name? It sounds like maybe your OS default font got changed. Quote
tombu Posted December 9, 2021 Posted December 9, 2021 Which editor are you using? The system variable LISPSYS (System Variable) controls which editor is set to default VLIDE no longer supports Unicode characters. If you need those extended characters you should try Visual Studio (VS) Code. Quote
Manuel_Kunde Posted December 9, 2021 Author Posted December 9, 2021 6 hours ago, mhupp said: When you say "is printed like this" do you mean a file is made like PDF with that name? It sounds like maybe your OS default font got changed. This is a general problem with the letters. The above code only sets a page setup. But in all my programs that contain special letters, the characters are not longer recognized. Quote
Manuel_Kunde Posted December 9, 2021 Author Posted December 9, 2021 6 hours ago, tombu said: Which editor are you using? The system variable LISPSYS (System Variable) controls which editor is set to default VLIDE no longer supports Unicode characters. If you need those extended characters you should try Visual Studio (VS) Code. I only use Visual Studio. Quote
Roy_043 Posted December 10, 2021 Posted December 10, 2021 This problem may be caused by the encoding of the LSP file. Try converting to ANSI. In Notepad++: Encoding -> Convert to ANSI Quote
tombu Posted December 11, 2021 Posted December 11, 2021 On 12/9/2021 at 2:01 PM, Manuel_Kunde said: My Lispsys is set 1 If you're wanting to use ASCII characters you need it set to 2. Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.