mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-15 10:30:25 -08:00
* cedet/srecode/compile.el (srecode-compile-split-code)
(srecode-compile-parse-inserter): Fix compiler warning.
This commit is contained in:
parent
8f52e94d5c
commit
6564b17767
2 changed files with 7 additions and 1 deletions
|
|
@ -1,3 +1,8 @@
|
|||
2009-09-20 Chong Yidong <cyd@stupidchicken.com>
|
||||
|
||||
* cedet/srecode/compile.el (srecode-compile-split-code)
|
||||
(srecode-compile-parse-inserter): Fix compiler warning.
|
||||
|
||||
2009-09-20 Chong Yidong <cyd@stupidchicken.com>
|
||||
|
||||
* cedet/ede/speedbar.el (ede-speedbar-file-setup): Add autoload.
|
||||
|
|
|
|||
|
|
@ -393,7 +393,7 @@ If END-NAME is specified, and the input string"
|
|||
(match-end 0)))
|
||||
(namestart (match-end 0))
|
||||
(junk (string-match regexend what namestart))
|
||||
end tail name)
|
||||
end tail name key)
|
||||
;; Add string to compiled output
|
||||
(when (> (length prefix) 0)
|
||||
(setq comp (cons prefix comp)))
|
||||
|
|
@ -462,6 +462,7 @@ If END-NAME is specified, and the input string"
|
|||
"Parse the inserter TXT with the current STATE.
|
||||
Return an inserter object."
|
||||
(let ((key (aref txt 0))
|
||||
name
|
||||
)
|
||||
(if (and (or (< key ?A) (> key ?Z))
|
||||
(or (< key ?a) (> key ?z)) )
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue