You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
982 B
21 lines
982 B
Index: gettext-0.19.8.1/gettext-tools/misc/po-mode.el |
|
=================================================================== |
|
--- gettext-0.19.8.1.orig/gettext-tools/misc/po-mode.el |
|
+++ gettext-0.19.8.1/gettext-tools/misc/po-mode.el |
|
@@ -3518,10 +3518,12 @@ Write to your team? ('n' if writing to |
|
(re-search-forward |
|
(concat "^" (regexp-quote mail-header-separator) "\n")) |
|
(save-excursion |
|
- (insert-buffer-substring buffer) |
|
- (shell-command-on-region |
|
- (region-beginning) (region-end) |
|
- (concat po-gzip-uuencode-command " " name ".gz") t t)))))) |
|
+ (save-restriction |
|
+ (narrow-to-region (point) (point)) |
|
+ (insert-buffer-substring buffer) |
|
+ (shell-command-on-region |
|
+ (point-min) (point-max) |
|
+ (concat po-gzip-uuencode-command " " name ".gz") t t))))))) |
|
(message "")) |
|
|
|
(defun po-confirm-and-quit ()
|
|
|