Sisyphus repository
Last update: 1 october 2023 | SRPMs: 18631 | Visits: 37622695
en ru br
ALT Linux repos
S:1.4w-alt1
5.0: 0.9.2-alt2
4.1: 0.9.2-alt1
4.0: 0.9.2-alt1
3.0:
+backports:0.9.2-alt0.C30.1

Group :: System/X11
RPM: gmrun

 Main   Changelog   Spec   Patches   Sources   Download   Gear   Bugs and FR  Repocop 

Patch: gmrun-0.9.1-deb-10-escaping.patch
Download


#! /bin/sh /usr/share/dpatch/dpatch-run
## 10-escaping.dpatch by Luca Bedogni <me@lucabedogni.it>
##
## DP: Correct escaping of characters
@DPATCH@
--- gmrun-0.9.1/src/gtkcompletionline.cc	2003-06-22 01:14:34.000000000 +0200
+++ gmrun-0.9.1/src/gtkcompletionline.cc	2007-08-01 00:32:35.000000000 +0200
@@ -225,12 +225,9 @@
   const char* i = str.c_str();
   while (*i) {
     char c = *i++;
-    switch (c) {
-     case ' ':
-      res += '\\';
-     default:
-      res += c;
-    }
+    if (c == ' ' || c == '(' || c == ')' || c =='\'')
+        res += '\\';
+    res += c;
   }
   return res;
 }
 
design & coding: Vladimir Lettiev aka crux © 2004-2005, Andrew Avramenko aka liks © 2007-2008
current maintainer: Michael Shigorin