~ubuntu-branches/debian/sid/neovim/sid

« back to all changes in this revision

Viewing changes to src/nvim/mbyte.c

  • Committer: Package Import Robot
  • Author(s): James McCoy
  • Date: 2016-04-18 21:42:19 UTC
  • mfrom: (1.1.2)
  • Revision ID: package-import@ubuntu.com-20160418214219-1e6d4o1fwqarzk46
Tags: 0.1.3-1
* New upstream release.  (Closes: #820562)
* debian/control:
  + Remove unnecessary luarocks Build-Depends
  + Add libkvm-dev Build-Depends for kfreebsd-*
  + Add python(3)-neovim to Recommends.  (Closes: #812737)
  + Declare compiance with policy 3.9.8, no changes needed.

Show diffs side-by-side

added added

removed removed

Lines of Context:
571
571
#ifdef HAVE_WORKING_LIBINTL
572
572
  /* GNU gettext 0.10.37 supports this feature: set the codeset used for
573
573
   * translated messages independently from the current locale. */
574
 
  (void)bind_textdomain_codeset(VIMPACKAGE,
575
 
      enc_utf8 ? "utf-8" : (char *)p_enc);
 
574
  (void)bind_textdomain_codeset(PROJECT_NAME,
 
575
                                enc_utf8 ? "utf-8" : (char *)p_enc);
576
576
#endif
577
577
 
578
578