File tree Expand file tree Collapse file tree 3 files changed +4
-2
lines changed Expand file tree Collapse file tree 3 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 1
1
-*- mode: text; mode: fold -*-
2
2
Changes since 5.1.0
3
3
1. src/most.c: Ignore empty filenames on the command line
4
+ 2. src/cmd.c: Changed /* drop */ to /* fall through */ to avoid a
5
+ gcc-8 warning in a switch statement
4
6
5
7
Changes since 5.0.0
6
8
1. src/Makefile.in: Install docs in $prefix/share/doc
Original file line number Diff line number Diff line change @@ -279,7 +279,7 @@ void most_extended_key_cmd (void)
279
279
most_delete_file_cmd ();
280
280
break ;
281
281
}
282
- /* drop */
282
+ /* fall through */
283
283
default :
284
284
most_message ("Invalid option." , 1 );
285
285
}
Original file line number Diff line number Diff line change 20
20
#ifndef MOST_VERSION
21
21
#define MOST_VERSION 50200
22
22
23
- #define MOST_VERSION_STR "pre5.2-1 "
23
+ #define MOST_VERSION_STR "pre5.2-2 "
24
24
#endif /* MOST_VERSION */
You can’t perform that action at this time.
0 commit comments