[geany/geany] 781738: Replace fileGetc() with getcFromInputFile() also in comments

Jiří Techet git-noreply at xxxxx
Sat Sep 10 07:26:06 UTC 2016


Branch:      refs/heads/master
Author:      Jiří Techet <techet at gmail.com>
Committer:   Jiří Techet <techet at gmail.com>
Date:        Sat, 30 Jul 2016 11:11:45 UTC
Commit:      781738fe10153e808dbce08879618f1ce91d685f
             https://github.com/geany/geany/commit/781738fe10153e808dbce08879618f1ce91d685f

Log Message:
-----------
Replace fileGetc() with getcFromInputFile() also in comments


Modified Paths:
--------------
    ctags/main/read.c

Modified: ctags/main/read.c
8 lines changed, 4 insertions(+), 4 deletions(-)
===================================================================
@@ -453,15 +453,15 @@ static vString *iFileGetLine (void)
 	return result;
 }
 
-/*  Do not mix use of readLineFromInputFile () and fileGetc () for the same file.
+/*  Do not mix use of readLineFromInputFile () and getcFromInputFile () for the same file.
  */
 extern int getcFromInputFile (void)
 {
 	int c;
 
 	/*  If there is an ungotten character, then return it.  Don't do any
 	 *  other processing on it, though, because we already did that the
-	 *  first time it was read through fileGetc ().
+	 *  first time it was read through getcFromInputFile ().
 	 */
 	if (File.ungetchIdx > 0)
 	{
@@ -514,8 +514,8 @@ extern int skipToCharacterInInputFile (int c)
 	return d;
 }
 
-/*  An alternative interface to fileGetc (). Do not mix use of readLineFromInputFile()
- *  and fileGetc() for the same file. The returned string does not contain
+/*  An alternative interface to getcFromInputFile (). Do not mix use of readLineFromInputFile()
+ *  and getcFromInputFile() for the same file. The returned string does not contain
  *  the terminating newline. A NULL return value means that all lines in the
  *  file have been read and we are at the end of file.
  */



--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).


More information about the Commits mailing list