Turns out my text styles were different in a few drawings.
Pesky romans.shx and messed up font styles.
Here are a couple lisp routines that when edited and set up to run as a script will eliminate old shx files.
Edit to your liking.
(defun c:newfont ()
(setvar "cmdecho" 0)
(command "-style" "romans" "arial.ttf" "0" "1" "0" "NO" "NO")
(command "-style" "romant" "arial.ttf" "0" "1" "0" "NO" "NO")
(command "-style" "txt" "arial.ttf" "0" "1" "0" "NO" "NO")
(command "-style" "Controls_text" "arial.ttf" "0" "1" "0" "NO" "NO")
(command "-style" "simplex" "arial.ttf" "0" "1" "0" "NO" "NO")
(command "-style" "legacy" "arial.ttf" "0" "1" "0" "NO" "NO")
(command "-style" "WD" "arial.ttf" "0" "1" "0" "NO" "NO")
(command "-style" "Italic" "arial.ttf" "0" "1" "0" "NO" "NO")
(command "-style" "Annotative" "txt.shx" "0" "1" "0" "NO" "NO" "NO")
(command "-style" "BORDERS" "arial.ttf" "0" "1" "0" "NO" "NO")
(command "-style" "standard" "arial.ttf" "0" "1" "0" "NO" "NO")
(setvar "cmdecho" 1)
(print "All font styles updated")
)
(defun c:oldfont ()
(setvar "cmdecho" 0)
(command "-style" "Annotative" "txt.shx" "0" "1" "0" "NO" "NO" "NO")
(command "-style" "BORDERS" "arial.ttf" "0" "1" "0" "NO" "NO")
(command "-style" "txt" "arial.ttf" "0" "1" "0" "NO" "NO")
(command "-style" "Controls_text" "romans.shx" "0" "1" "0" "NO" "NO" "NO")
(command "-style" "Italic" "italic.shx" "0" "1" "0" "NO" "NO" "NO")
(command "-style" "legacy" "arial.ttf" "0" "1" "0" "NO" "NO")
(command "-style" "romant" "romant.shx" "0" "1" "0" "NO" "NO" "NO")
(command "-style" "simplex" "simplex.shx" "0" "1" "0" "NO" "NO" "NO")
(command "-style" "WD" "arial.ttf" "0" "1" "0" "NO" "NO")
(command "-style" "standard" "txt.shx" "0" "1" "0" "NO" "NO" "NO")
(setvar "cmdecho" 1)
(print "All font styles reverted")
)