elisp: fix syntax err
This commit is contained in:
parent
ac63aff0cd
commit
a4c18ee7bd
@ -12,7 +12,7 @@
|
||||
((or (= (length message) 0) (boundp 'message))
|
||||
(princ (format die-format-string-bug (format "Function '%1$s' was used without specified message '%2$s'" function-name message)))
|
||||
(append-to-file (format die-format-string-bug (format "Function '%1$s' was used without specified message '%2$s'" function-name message)) nil emacs-log-file) )
|
||||
((> (lenght message) 0)
|
||||
((> (length message) 0)
|
||||
(princ (format edebug-format-string message)
|
||||
(append-to-file (format edebug-format-string message) nil emacs-log-file)) )
|
||||
(t
|
||||
|
@ -11,7 +11,7 @@
|
||||
((or (= (length message) 0) (boundp 'message))
|
||||
(princ (format die-format-string-bug (format "Function '%1$s' was used without specified message '%2$s'" function-name message)))
|
||||
(append-to-file (format die-format-string-bug (format "Function '%1$s' was used without specified message '%2$s'" function-name message)) nil emacs-log-file) )
|
||||
((> (lenght message) 0)
|
||||
((> (length message) 0)
|
||||
(princ (format eerror-format-string message))
|
||||
(append-to-file (format eerror-format-string message) nil emacs-log-file))
|
||||
(t
|
||||
|
@ -12,7 +12,7 @@
|
||||
((or (= (length message) 0) (boundp 'message))
|
||||
(princ (format die-format-string-bug (format "Function '%1$s' was used without specified message '%2$s'" function-name message))
|
||||
(append-to-file (format die-format-string-bug (format "Function '%1$s' was used without specified message '%2$s'" function-name message)) nil emacs-log-file)) )
|
||||
((> (lenght message) 0)
|
||||
((> (length message) 0)
|
||||
(princ (format efixme-format-string message)
|
||||
(append-to-file (format efixme-format-string message) nil emacs-log-file)) )
|
||||
(t
|
||||
|
@ -11,7 +11,7 @@
|
||||
((or (= (length message) 0) (boundp 'message))
|
||||
(princ (format die-format-string-bug (format "Function '%1$s' was used without specified message '%2$s'" function-name message)))
|
||||
(append-to-file (format die-format-string-bug (format "Function '%1$s' was used without specified message '%2$s'" function-name message)) nil emacs-log-file) )
|
||||
((> (lenght message) 0)
|
||||
((> (length message) 0)
|
||||
(princ (format einfo-format-string message)
|
||||
(append-to-file (format einfo-format-string message) nil emacs-log-file)) )
|
||||
(t
|
||||
|
@ -11,7 +11,7 @@
|
||||
((or (= (length message) 0) (boundp 'message))
|
||||
(princ (format die-format-string-bug (format "Function '%1$s' was used without specified message '%2$s'" function-name message))
|
||||
(append-to-file (format die-format-string-bug (format "Function '%1$s' was used without specified message '%2$s'" function-name message)) nil emacs-log-file) )
|
||||
((> (lenght message) 0)
|
||||
((> (length message) 0)
|
||||
(princ (format ewarn-format-string message))
|
||||
(append-to-file (format ewarn-format-string message) nil emacs-log-file) )
|
||||
(t
|
||||
|
Loading…
Reference in New Issue
Block a user