aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/cedet/srecode
diff options
context:
space:
mode:
authorChong Yidong2009-09-20 21:48:30 +0000
committerChong Yidong2009-09-20 21:48:30 +0000
commit6564b17767d46022996d43647c176cf58735dc08 (patch)
tree93978c404157734790da1175cc01f0873b8bb635 /lisp/cedet/srecode
parent8f52e94d5cad6e237ef3a0fe539f5c32c308a8be (diff)
downloademacs-6564b17767d46022996d43647c176cf58735dc08.tar.gz
emacs-6564b17767d46022996d43647c176cf58735dc08.zip
* cedet/srecode/compile.el (srecode-compile-split-code)
(srecode-compile-parse-inserter): Fix compiler warning.
Diffstat (limited to 'lisp/cedet/srecode')
-rw-r--r--lisp/cedet/srecode/compile.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/cedet/srecode/compile.el b/lisp/cedet/srecode/compile.el
index f744b052162..769c0137e68 100644
--- a/lisp/cedet/srecode/compile.el
+++ b/lisp/cedet/srecode/compile.el
@@ -393,7 +393,7 @@ If END-NAME is specified, and the input string"
393 (match-end 0))) 393 (match-end 0)))
394 (namestart (match-end 0)) 394 (namestart (match-end 0))
395 (junk (string-match regexend what namestart)) 395 (junk (string-match regexend what namestart))
396 end tail name) 396 end tail name key)
397 ;; Add string to compiled output 397 ;; Add string to compiled output
398 (when (> (length prefix) 0) 398 (when (> (length prefix) 0)
399 (setq comp (cons prefix comp))) 399 (setq comp (cons prefix comp)))
@@ -462,6 +462,7 @@ If END-NAME is specified, and the input string"
462 "Parse the inserter TXT with the current STATE. 462 "Parse the inserter TXT with the current STATE.
463Return an inserter object." 463Return an inserter object."
464 (let ((key (aref txt 0)) 464 (let ((key (aref txt 0))
465 name
465 ) 466 )
466 (if (and (or (< key ?A) (> key ?Z)) 467 (if (and (or (< key ?A) (> key ?Z))
467 (or (< key ?a) (> key ?z)) ) 468 (or (< key ?a) (> key ?z)) )