~ubuntu-branches/ubuntu/quantal/texmacs/quantal

« back to all changes in this revision

Viewing changes to src/Guile/Glue/glue_editor.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Atsuhito KOHDA, Kamaraju Kusumanchi, kohda
  • Date: 2008-04-06 15:11:41 UTC
  • mfrom: (1.1.7 upstream) (4.1.1 lenny)
  • Revision ID: james.westby@ubuntu.com-20080406151141-w0sg20jnv86mlt6f
Tags: 1:1.0.6.14-1
[Kamaraju Kusumanchi <kamaraju@gmail.com>]
* New upstream release
* 01_american.dpatch is updated
* Since thread support in guile-1.8 is now disabled, the segmentation faults
  should not arise anymore. More info at #439923. (Closes: #450499, #458685)
[kohda]
* This version fixed menu problem.  (Closes: #447083)
* Reverted orig.tar.gz to the upstream tarball.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1432
1432
}
1433
1433
 
1434
1434
SCM
1435
 
tmg_get_keyboard_modifiers () {
1436
 
  // SCM_DEFER_INTS;
1437
 
  int out= get_server()->get_editor()->get_kbd_modifiers ();
1438
 
  // SCM_ALLOW_INTS;
1439
 
 
1440
 
  return int_to_scm (out);
1441
 
}
1442
 
 
1443
 
SCM
1444
1435
tmg_go_to_path (SCM arg1) {
1445
1436
  SCM_ASSERT_PATH (arg1, SCM_ARG1, "go-to-path");
1446
1437
 
2902
2893
  scm_new_procedure ("emulate-keyboard", (FN) tmg_emulate_keyboard, 1, 0, 0);
2903
2894
  scm_new_procedure ("emulate-keyboard-message", (FN) tmg_emulate_keyboard_message, 2, 0, 0);
2904
2895
  scm_new_procedure ("complete-try?", (FN) tmg_complete_tryP, 0, 0, 0);
2905
 
  scm_new_procedure ("get-keyboard-modifiers", (FN) tmg_get_keyboard_modifiers, 0, 0, 0);
2906
2896
  scm_new_procedure ("go-to-path", (FN) tmg_go_to_path, 1, 0, 0);
2907
2897
  scm_new_procedure ("go-left", (FN) tmg_go_left, 0, 0, 0);
2908
2898
  scm_new_procedure ("go-right", (FN) tmg_go_right, 0, 0, 0);