1
1

Fix filename for msppt in ext.d/doc.sh: use $MC_EXT_FILENAME not %f.

Signed-off-by: Andrew Borodin <aborodin@vmail.ru>
Этот коммит содержится в:
Gabriel VLASIU 2013-04-22 14:00:09 +03:00 коммит произвёл Slava Zanko
родитель ed0bd98756
Коммит 41a168ab4c

Просмотреть файл

@ -149,10 +149,10 @@ do_open_action() {
msppt)
if [ -n "$DISPLAY" ]; then
OOFFICE=`get_ooffice_executable`
(${OOFFICE} %f >/dev/null 2>&1 &)
(${OOFFICE} "${MC_EXT_FILENAME}" >/dev/null 2>&1 &)
else
tmp=`mktemp -d ${TMPDIR:-/tmp}/%p.XXXXXX`
ppthtml %f > "$tmp/page.html"
ppthtml "${MC_EXT_FILENAME}" > "$tmp/page.html"
elinks "$tmp/page.html"
rm -rf "$tmp"
fi