]> Pileus Git - ~andy/gtk/blobdiff - gtk/gtk-keys.css.emacs
entrycompletion: Don't reconnect signals all the time
[~andy/gtk] / gtk / gtk-keys.css.emacs
index df7d4b8baea67b824fa62fe3636ae6669752f9da..3c1cd875936739b5f7a02277b4fcdc38e41eaaba 100644 (file)
@@ -13,9 +13,7 @@
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the
- * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
- * Boston, MA 02111-1307, USA.
+ * License along with this library. If not, see <http://www.gnu.org/licenses/>.
  */
 
 /*
@@ -69,7 +67,7 @@
 
   bind "<ctrl>h" { "delete-from-cursor" (chars, -1) };
   bind "<ctrl>w" { "delete-from-cursor" (word-ends, -1) };
-};
+}
 
 /*
  * Bindings for GtkTextView
@@ -83,7 +81,7 @@
 
   bind "<ctrl>space" { "set-anchor" () };
   bind "<ctrl>KP_Space" { "set-anchor" () };
-};
+}
 
 /*
  * Bindings for GtkTreeView
@@ -93,7 +91,7 @@
   bind "<ctrl>s" { "start-interactive-search" () };
   bind "<ctrl>f" { "move-cursor" (logical-positions, 1) };
   bind "<ctrl>b" { "move-cursor" (logical-positions, -1) };
-};
+}
 
 /*
  * Bindings for menus
   bind "<ctrl>p" { "move-current" (prev) };
   bind "<ctrl>f" { "move-current" (child) };
   bind "<ctrl>b" { "move-current" (parent) };
-};
+}
 
 GtkEntry {
   gtk-key-bindings: gtk-emacs-text-entry;