Commit 335c5835236651b4467ad549bc20f110fe6054dd
Fix processing of \ in filelists menus on Windows
Author: xaizek
Author date (UTC): 2014-05-06 18:08
Committer name: xaizek
Committer date (UTC): 2014-05-06 18:08
Parent(s): 22a9528d8d402f6af8d220aa3674425c093e7236
Signing key: 
Tree: da466d7b3e496defe21c06aa78c64f21119eb729
| File ChangeLog changed (mode: 100644) (index 8fe6567c5..0a8b754e3) | 
	| 5 | 5 |  |  | 
	| 6 | 6 | Fixed selecting file on navigation from menus with filelists. | Fixed selecting file on navigation from menus with filelists. | 
	| 7 | 7 |  |  | 
	|  | 8 |  | Fixed processing of backward slashes in menus with filelists on Windows. | 
	|  | 9 |  |  | 
	| 8 | 10 | 0.7.6 to 0.7.7-beta | 0.7.6 to 0.7.7-beta | 
	| 9 | 11 |  |  | 
	| 10 | 12 | Added Ctrl-W z key to normal and view modes, which closes preview pane or | Added Ctrl-W z key to normal and view modes, which closes preview pane or | 
| File src/menus/menus.c changed (mode: 100644) (index af313db27..9260aba5e) | 
	| ... | ... | parse_spec(const char spec[], int *line_num) | 
	| 522 | 522 |  |  | 
	| 523 | 523 | chomp(path_buf); | chomp(path_buf); | 
	| 524 | 524 |  |  | 
	|  | 525 |  | #ifdef _WIN32 | 
	|  | 526 |  | to_forward_slash(path_buf); | 
	|  | 527 |  | #endif | 
	|  | 528 |  |  | 
	| 525 | 529 | return path_buf; | return path_buf; | 
	| 526 | 530 | } | } | 
	| 527 | 531 |  |  |