Ticket #1976 (new defect) — at Version 1

Opened 14 years ago

Last modified 12 years ago

unifying some declarations in src dir

Reported by: vit_r Owned by:
Priority: trivial Milestone: Future Releases
Component: mc-core Version: master
Keywords: Cc:
Blocked By: Blocking:
Branch state: no branch Votes for changeset:

Description (last modified by slyfox) (diff)

Example

replacing

//  some  chars

    int line
    int start_line

by

/*  some  chars  */

    long line
    long start_line

Change History

Changed 14 years ago by vit_r

trivial changes in some src-dir C-files

comment:1 Changed 14 years ago by slyfox

  • Description modified (diff)
  1. Why long, but not off_t?

2.

---MC_FLHGH_FTYPE_T_SPECIAL_DOOR, 
+++MC_FLHGH_FTYPE_T_SPECIAL_DOOR 

Wtf? Trailing comma is legal (and consistent with other declarations),
so appending new enum entries patch will affect only new strings.

3.

mcview__get_nroff_real_len (mcview_t * view, off_t start, off_t length)
mcview_get_nroff_real_len (mcview_t * view, off_t start, off_t length)

What was the point ?

Guess, You didn't see mc_search _ _ * set of functions.
It's kind of ${subsystem} _ _ ${local_name}. Maybe, it
should be documented somewhere in code style guidelines.

Thanks.

Note: See TracTickets for help on using tickets.