emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] trunk r113998: Fix broken customization in Flymake.


From: Xue Fuqiao
Subject: [Emacs-diffs] trunk r113998: Fix broken customization in Flymake.
Date: Sun, 25 Aug 2013 22:31:06 +0000
User-agent: Bazaar (2.6b2)

------------------------------------------------------------
revno: 113998
revision-id: address@hidden
parent: address@hidden
committer: Xue Fuqiao <address@hidden>
branch nick: trunk
timestamp: Mon 2013-08-26 06:30:56 +0800
message:
  Fix broken customization in Flymake.
  
  * lisp/progmodes/flymake.el (flymake-get-real-file-name-function):
  Fix broken customization.  (Bug#15184)
modified:
  doc/lispref/nonascii.texi      
nonascii.texi-20091113204419-o5vbwnq5f7feedwu-6202
  lisp/ChangeLog                 changelog-20091113204419-o5vbwnq5f7feedwu-1432
  lisp/progmodes/flymake.el      flymake.el-20091113204419-o5vbwnq5f7feedwu-3065
=== modified file 'doc/lispref/nonascii.texi'
--- a/doc/lispref/nonascii.texi 2013-08-02 13:52:10 +0000
+++ b/doc/lispref/nonascii.texi 2013-08-25 22:30:56 +0000
@@ -248,6 +248,7 @@
 characters.
 @end defun
 
address@hidden FIXME: Should address@hidden' be address@hidden'?
 @defun byte-to-string byte
 @cindex byte to string
 This function returns a unibyte string containing a single byte of
@@ -401,6 +402,8 @@
 during text processing and display.  Thus, character properties are an
 important part of specifying the character's semantics.
 
address@hidden FIXME: Use the latest URI of this chapter?
address@hidden http://www.unicode.org/versions/latest/ch04.pdf
   On the whole, Emacs follows the Unicode Standard in its implementation
 of character properties.  In particular, Emacs supports the
 @uref{http://www.unicode.org/reports/tr23/, Unicode Character Property

=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2013-08-25 21:06:07 +0000
+++ b/lisp/ChangeLog    2013-08-25 22:30:56 +0000
@@ -1,3 +1,8 @@
+2013-08-25  Xue Fuqiao  <address@hidden>
+
+       * progmodes/flymake.el (flymake-get-real-file-name-function):
+       Fix broken customization.  (Bug#15184)
+
 2013-08-25  Alan Mackenzie  <address@hidden>
 
        Improve indentation of bracelists defined by macros (without "=").

=== modified file 'lisp/progmodes/flymake.el'
--- a/lisp/progmodes/flymake.el 2013-06-21 14:36:13 +0000
+++ b/lisp/progmodes/flymake.el 2013-08-25 22:30:56 +0000
@@ -353,7 +353,7 @@
       'flymake-simple-cleanup))
 
 (defun flymake-get-real-file-name-function (file-name)
-  (or (nth 4 (flymake-get-file-name-mode-and-masks file-name))
+  (or (nth 2 (flymake-get-file-name-mode-and-masks file-name))
       'flymake-get-real-file-name))
 
 (defvar flymake-find-buildfile-cache (flymake-makehash 'equal))


reply via email to

[Prev in Thread] Current Thread [Next in Thread]