diff options
Diffstat (limited to 'debian/patches/mcedit_full_path.patch')
-rw-r--r-- | debian/patches/mcedit_full_path.patch | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/debian/patches/mcedit_full_path.patch b/debian/patches/mcedit_full_path.patch new file mode 100644 index 0000000..4223d76 --- /dev/null +++ b/debian/patches/mcedit_full_path.patch @@ -0,0 +1,34 @@ +ast-Update: 2017-06-29 +Forwarded: not-needed +Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=764226 +Bug-Upstream: http://www.midnight-commander.org/ticket/3285 +Author: Dmitry Smirnov <onlyjob@member.fsf.org> +Updated-by: Denis Briand <debian@denis-briand.fr> +Description: 'mcedit' status line to show full path to file, like in 'mcview'. + +--- a/doc/man/mcedit.1.in ++++ b/doc/man/mcedit.1.in +@@ -604,9 +604,9 @@ + will be untouched. Default value is + "\fB-\fR\fB+\fR\fB*\fR\fB\\\fR\fB,\fR\fB.\fR\fB;\fR\fB:\fR\fB&\fR\fB>\fR". + .TP + .I editor_state_full_filename +-Show full path name in the status line. If disabled (default), only base name of the ++Show full path name in the status line. If disabled, only base name of the + file is shown. + .SH MISCELLANEOUS + The editor also displays non\-us characters (160+). When editing + binary files, you should set +--- a/src/editor/edit.c ++++ b/src/editor/edit.c +@@ -92,9 +92,9 @@ + gboolean option_cursor_beyond_eol = FALSE; + gboolean option_line_state = FALSE; + int option_line_state_width = 0; + gboolean option_cursor_after_inserted_block = FALSE; +-gboolean option_state_full_filename = FALSE; ++gboolean option_state_full_filename = TRUE; + + gboolean enable_show_tabs_tws = TRUE; + gboolean option_check_nl_at_eof = FALSE; + gboolean option_group_undo = FALSE; |