I need urgent help : error: misplaced dot on input

I need urgent help : error: misplaced dot on input

rolisonfelipe
Collaborator Collaborator
1,539 Views
5 Replies
Message 1 of 6

I need urgent help : error: misplaced dot on input

rolisonfelipe
Collaborator
Collaborator

I need urgent help I was adjusting the msg of an lsp in NOT PAD ++, and suddenly the letters that have an accentuation of my language started to give an error,
after replacing for your non-accented versions, the message is now: error: misplaced dot on input

0 Likes
Accepted solutions (1)
1,540 Views
5 Replies
Replies (5)
Message 2 of 6

rolisonfelipe
Collaborator
Collaborator


AutoCAD menu utilities loaded.; error: bad character read (octal): 0

 

 

 

WHEN I KEEP MESSAGES IN ACCORDANCE ACCORDING TO LANGUAGE, AUTO CAD RETURNS TO IN THE BEGINNING


AutoCAD menu utilities loaded .; error: bad character read (octal): 0

 

IF I CORRECT ACCENTUATION THE MESSAGE IS:

 

error: misplaced dot on input

 

WHAT DO I DO? IF I CORRECT FROM ERROR, KEEP FROM ERROR.

0 Likes
Message 3 of 6

pbejse
Mentor
Mentor

@rolisonfelipe wrote:

I need urgent help I was adjusting the msg of an lsp in NOT PAD ++, and suddenly the letters that have an accentuation of my language started to give an error,
after replacing for your non-accented versions, the message is now: error: misplaced dot on input


 

Just like what the message inidicated, misplaced dot. that's the hint

Like this one on an dotted list.

 

(setq alist '((0 ."INSERT")(2 . "BLOCK")))

 

the corrected syntax should be

 

(setq alist '((0 . "INSERT")(2 . "BLOCK")))

 

 So. without seeing your code, you may have to do some sleuthing on your end.

 

0 Likes
Message 4 of 6

rolisonfelipe
Collaborator
Collaborator

DEPURATION IN VLIDE

(progn (command "_AREA" "_O" ENT1)
(setq VVAREA (strcat (rtos (getvar "AREA") 2 2) "m2))
(setq VINSERT (getpoint))
(command "_INSERT" VVBL VINSERT ESCALA "" "" ESCPROJETO NDESENHO COMENTARIO (NTH (atoi NTI) LLTITULO2) VVAREA )
(setq ENTS1 (entsel "\n INFORME UM POLIGONO <ENTER=Fim>: ")))))
(if restaura (restaura))
(command "_undo" "_end"))

;////////////////////////////////////////////////////////////////////////////////////////////////////////
;///////////////////////////////////////////////////////////////////////////////////////>TENHADO COMANDOS
;////////////////////////////////////////////////////////////////////////////////////////////////////////
(DEFUN C:TE () (C:EXECUTAR-ROOF))
;////////////////////////////////////////////////////////////////////////////////////////////////////////
(DEFUN C:EXECUTAR-ROOF (/ SS1 SS2 ANG CTR)

(if (= (TBLSEARCH "LAYER" "ARQ-DIAGRAMA DE COBERTURA"))
(command "_-LAYER" "_MAKE" "ARQ-DIAGRAMA DE COBERTURA" "_C" "7" "" ""))

(setq CTR -1
SS1 (SSGET '((0 . "LWPOLYLINE") (-4 . "&") (70 . 1)))
SS2 (SSADD)
ANG (GETREAL "\N INFORME A INCLINACAO DO TELHADO:"))
(REPEAT (SSLENGTH SS1)
(command "._EXTRUDE" (SSNAME SS1 (setq CTR (1+ CTR))) "" "_T" (- 90 ANG) 1000)
(setq SS2 (SSADD (ENTLAST) SS2)))
(command "._UNION" SS2 "")
(TRANSFERIR_PARA_LAYER_TELHADO (ENTLAST) "ARQ-DIAGRAMA DE COBERTURA")

 

 

THIS POINT :: error: misplaced dot on input... HOW DO SOLVER IT

rolisonfelipe_0-1613799842149.png

 

0 Likes
Message 5 of 6

pbejse
Mentor
Mentor
Accepted solution

A quick look

(setq VVAREA (strcat (rtos (getvar "AREA") 2 2) "m2))
(setq VVAREA (strcat (rtos (getvar "AREA") 2 2) "m2"))

 

Message 6 of 6

rolisonfelipe
Collaborator
Collaborator

thank you you saved my life, my heart almost went out of my mouth, here it is already 3:00 am and in the correction of the units m² to m2, I deleted more than necessary, in the other debugging the error was systematic "".
thanks!!!!! and a great night of work for everyone

0 Likes