Skip to content

Commit

Permalink
use a more standard designator for no-break_space (github issue:9)
Browse files Browse the repository at this point in the history
  • Loading branch information
bobbysmith007 committed Jun 3, 2013
1 parent e932f2d commit c444338
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/buildnode.lisp
Expand Up @@ -3,7 +3,9 @@

;;;; Common string util, stoplen from adwutils
(defparameter +common-white-space-trimbag+
'(#\space #\newline #\return #\tab #\no-break_space))
'(#\space #\newline #\return #\tab
#\u00A0 ;; this is #\no-break_space
))

(defun trim-whitespace (s)
(string-trim +common-white-space-trimbag+ s))
Expand Down

0 comments on commit c444338

Please sign in to comment.